├── .editorconfig ├── .eslintrc ├── .github └── workflows │ ├── ci-checks.yaml │ ├── deploy-cfp.yml │ └── deploy.yaml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── docs ├── 404.html ├── create.html ├── css │ └── site.css ├── favicon.png ├── img │ ├── install.png │ └── logo.png ├── index.html ├── lib │ ├── FileSaver.min.js │ └── jszip.min.js ├── plugins.json ├── plugins │ ├── external-selection-menu │ │ ├── manifest.json │ │ └── plugin.js │ ├── theme-arc │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ ├── theme-cupertino-auto │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ ├── theme-cupertino-dark │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ ├── theme-cupertino-light │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ ├── theme-darker │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ ├── theme-dracula │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ ├── theme-nord │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ ├── theme-orange │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css │ └── theme-thgworks │ │ ├── README.md │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── manifest.json │ │ └── plugin.css └── translations │ ├── ca │ ├── ca.json │ ├── index.html │ └── manifest.json │ ├── cs │ ├── cs.json │ ├── index.html │ └── manifest.json │ ├── da │ ├── da.json │ ├── index.html │ └── manifest.json │ ├── de-DE │ ├── de-DE.json │ ├── index.html │ └── manifest.json │ ├── es-ES │ ├── es-ES.json │ ├── index.html │ └── manifest.json │ ├── et-EE │ ├── et-EE.json │ ├── index.html │ └── manifest.json │ ├── fi │ ├── fi.json │ ├── index.html │ └── manifest.json │ ├── fr-FR │ ├── fr-FR.json │ ├── index.html │ └── manifest.json │ ├── hu │ ├── hu.json │ ├── index.html │ └── manifest.json │ ├── index.html │ ├── it-IT │ ├── index.html │ ├── it-IT.json │ └── manifest.json │ ├── ja │ ├── index.html │ ├── ja.json │ └── manifest.json │ ├── ko │ ├── index.html │ ├── ko.json │ └── manifest.json │ ├── meta.json │ ├── nl-NL │ ├── index.html │ ├── manifest.json │ └── nl-NL.json │ ├── no │ ├── index.html │ ├── manifest.json │ └── no.json │ ├── pl │ ├── index.html │ ├── manifest.json │ └── pl.json │ ├── pt-BR │ ├── index.html │ ├── manifest.json │ └── pt-BR.json │ ├── pt-PT │ ├── index.html │ ├── manifest.json │ └── pt-PT.json │ ├── ru-RU │ ├── index.html │ ├── manifest.json │ └── ru-RU.json │ ├── sk │ ├── index.html │ ├── manifest.json │ └── sk.json │ ├── sv-SE │ ├── index.html │ ├── manifest.json │ └── sv-SE.json │ ├── tr │ ├── index.html │ ├── manifest.json │ └── tr.json │ ├── uk │ ├── index.html │ ├── manifest.json │ └── uk.json │ ├── zh-CN │ ├── index.html │ ├── manifest.json │ └── zh-CN.json │ └── zh-TW │ ├── index.html │ ├── manifest.json │ └── zh-TW.json ├── package.json ├── scripts ├── download-translations.js ├── rotate-key.js ├── sign.js ├── start.js └── update-plugins.js └── tmpl ├── language-index.html └── manifest.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/.github/workflows/ci-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/deploy-cfp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/.github/workflows/deploy-cfp.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/README.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/create.html -------------------------------------------------------------------------------- /docs/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/css/site.css -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/img/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/img/install.png -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/lib/FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/lib/FileSaver.min.js -------------------------------------------------------------------------------- /docs/lib/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/lib/jszip.min.js -------------------------------------------------------------------------------- /docs/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins.json -------------------------------------------------------------------------------- /docs/plugins/external-selection-menu/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/external-selection-menu/manifest.json -------------------------------------------------------------------------------- /docs/plugins/external-selection-menu/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/external-selection-menu/plugin.js -------------------------------------------------------------------------------- /docs/plugins/theme-arc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-arc/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-arc/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-arc/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-arc/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-arc/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-auto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-auto/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-auto/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-auto/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-auto/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-auto/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-dark/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-dark/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-dark/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-dark/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-dark/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-dark/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-light/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-light/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-light/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-light/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-cupertino-light/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-cupertino-light/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-darker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-darker/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-darker/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-darker/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-darker/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-darker/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-dracula/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-dracula/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-dracula/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-dracula/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-dracula/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-dracula/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-nord/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-nord/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-nord/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-nord/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-nord/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-nord/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-orange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-orange/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-orange/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-orange/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-orange/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-orange/plugin.css -------------------------------------------------------------------------------- /docs/plugins/theme-thgworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-thgworks/README.md -------------------------------------------------------------------------------- /docs/plugins/theme-thgworks/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-thgworks/favicon.ico -------------------------------------------------------------------------------- /docs/plugins/theme-thgworks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-thgworks/index.html -------------------------------------------------------------------------------- /docs/plugins/theme-thgworks/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-thgworks/manifest.json -------------------------------------------------------------------------------- /docs/plugins/theme-thgworks/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/plugins/theme-thgworks/plugin.css -------------------------------------------------------------------------------- /docs/translations/ca/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ca/ca.json -------------------------------------------------------------------------------- /docs/translations/ca/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ca/index.html -------------------------------------------------------------------------------- /docs/translations/ca/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ca/manifest.json -------------------------------------------------------------------------------- /docs/translations/cs/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/cs/cs.json -------------------------------------------------------------------------------- /docs/translations/cs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/cs/index.html -------------------------------------------------------------------------------- /docs/translations/cs/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/cs/manifest.json -------------------------------------------------------------------------------- /docs/translations/da/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/da/da.json -------------------------------------------------------------------------------- /docs/translations/da/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/da/index.html -------------------------------------------------------------------------------- /docs/translations/da/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/da/manifest.json -------------------------------------------------------------------------------- /docs/translations/de-DE/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/de-DE/de-DE.json -------------------------------------------------------------------------------- /docs/translations/de-DE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/de-DE/index.html -------------------------------------------------------------------------------- /docs/translations/de-DE/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/de-DE/manifest.json -------------------------------------------------------------------------------- /docs/translations/es-ES/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/es-ES/es-ES.json -------------------------------------------------------------------------------- /docs/translations/es-ES/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/es-ES/index.html -------------------------------------------------------------------------------- /docs/translations/es-ES/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/es-ES/manifest.json -------------------------------------------------------------------------------- /docs/translations/et-EE/et-EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/et-EE/et-EE.json -------------------------------------------------------------------------------- /docs/translations/et-EE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/et-EE/index.html -------------------------------------------------------------------------------- /docs/translations/et-EE/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/et-EE/manifest.json -------------------------------------------------------------------------------- /docs/translations/fi/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/fi/fi.json -------------------------------------------------------------------------------- /docs/translations/fi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/fi/index.html -------------------------------------------------------------------------------- /docs/translations/fi/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/fi/manifest.json -------------------------------------------------------------------------------- /docs/translations/fr-FR/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/fr-FR/fr-FR.json -------------------------------------------------------------------------------- /docs/translations/fr-FR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/fr-FR/index.html -------------------------------------------------------------------------------- /docs/translations/fr-FR/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/fr-FR/manifest.json -------------------------------------------------------------------------------- /docs/translations/hu/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/hu/hu.json -------------------------------------------------------------------------------- /docs/translations/hu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/hu/index.html -------------------------------------------------------------------------------- /docs/translations/hu/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/hu/manifest.json -------------------------------------------------------------------------------- /docs/translations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/index.html -------------------------------------------------------------------------------- /docs/translations/it-IT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/it-IT/index.html -------------------------------------------------------------------------------- /docs/translations/it-IT/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/it-IT/it-IT.json -------------------------------------------------------------------------------- /docs/translations/it-IT/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/it-IT/manifest.json -------------------------------------------------------------------------------- /docs/translations/ja/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ja/index.html -------------------------------------------------------------------------------- /docs/translations/ja/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ja/ja.json -------------------------------------------------------------------------------- /docs/translations/ja/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ja/manifest.json -------------------------------------------------------------------------------- /docs/translations/ko/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ko/index.html -------------------------------------------------------------------------------- /docs/translations/ko/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ko/ko.json -------------------------------------------------------------------------------- /docs/translations/ko/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ko/manifest.json -------------------------------------------------------------------------------- /docs/translations/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/meta.json -------------------------------------------------------------------------------- /docs/translations/nl-NL/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/nl-NL/index.html -------------------------------------------------------------------------------- /docs/translations/nl-NL/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/nl-NL/manifest.json -------------------------------------------------------------------------------- /docs/translations/nl-NL/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/nl-NL/nl-NL.json -------------------------------------------------------------------------------- /docs/translations/no/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/no/index.html -------------------------------------------------------------------------------- /docs/translations/no/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/no/manifest.json -------------------------------------------------------------------------------- /docs/translations/no/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/no/no.json -------------------------------------------------------------------------------- /docs/translations/pl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pl/index.html -------------------------------------------------------------------------------- /docs/translations/pl/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pl/manifest.json -------------------------------------------------------------------------------- /docs/translations/pl/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pl/pl.json -------------------------------------------------------------------------------- /docs/translations/pt-BR/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pt-BR/index.html -------------------------------------------------------------------------------- /docs/translations/pt-BR/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pt-BR/manifest.json -------------------------------------------------------------------------------- /docs/translations/pt-BR/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pt-BR/pt-BR.json -------------------------------------------------------------------------------- /docs/translations/pt-PT/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pt-PT/index.html -------------------------------------------------------------------------------- /docs/translations/pt-PT/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pt-PT/manifest.json -------------------------------------------------------------------------------- /docs/translations/pt-PT/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/pt-PT/pt-PT.json -------------------------------------------------------------------------------- /docs/translations/ru-RU/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ru-RU/index.html -------------------------------------------------------------------------------- /docs/translations/ru-RU/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ru-RU/manifest.json -------------------------------------------------------------------------------- /docs/translations/ru-RU/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/ru-RU/ru-RU.json -------------------------------------------------------------------------------- /docs/translations/sk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/sk/index.html -------------------------------------------------------------------------------- /docs/translations/sk/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/sk/manifest.json -------------------------------------------------------------------------------- /docs/translations/sk/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/sk/sk.json -------------------------------------------------------------------------------- /docs/translations/sv-SE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/sv-SE/index.html -------------------------------------------------------------------------------- /docs/translations/sv-SE/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/sv-SE/manifest.json -------------------------------------------------------------------------------- /docs/translations/sv-SE/sv-SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/sv-SE/sv-SE.json -------------------------------------------------------------------------------- /docs/translations/tr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/tr/index.html -------------------------------------------------------------------------------- /docs/translations/tr/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/tr/manifest.json -------------------------------------------------------------------------------- /docs/translations/tr/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/tr/tr.json -------------------------------------------------------------------------------- /docs/translations/uk/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/uk/index.html -------------------------------------------------------------------------------- /docs/translations/uk/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/uk/manifest.json -------------------------------------------------------------------------------- /docs/translations/uk/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/uk/uk.json -------------------------------------------------------------------------------- /docs/translations/zh-CN/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/zh-CN/index.html -------------------------------------------------------------------------------- /docs/translations/zh-CN/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/zh-CN/manifest.json -------------------------------------------------------------------------------- /docs/translations/zh-CN/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/zh-CN/zh-CN.json -------------------------------------------------------------------------------- /docs/translations/zh-TW/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/zh-TW/index.html -------------------------------------------------------------------------------- /docs/translations/zh-TW/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/zh-TW/manifest.json -------------------------------------------------------------------------------- /docs/translations/zh-TW/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/docs/translations/zh-TW/zh-TW.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/package.json -------------------------------------------------------------------------------- /scripts/download-translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/scripts/download-translations.js -------------------------------------------------------------------------------- /scripts/rotate-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/scripts/rotate-key.js -------------------------------------------------------------------------------- /scripts/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/scripts/sign.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/update-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/scripts/update-plugins.js -------------------------------------------------------------------------------- /tmpl/language-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/tmpl/language-index.html -------------------------------------------------------------------------------- /tmpl/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keeweb/keeweb-plugins/HEAD/tmpl/manifest.json --------------------------------------------------------------------------------