├── .gitignore ├── LICENSE ├── README.md ├── bootstrap.js ├── chrome.manifest ├── chrome ├── ChromeWindowsLoginCrypto.jsm ├── OSCrypto.jsm ├── OSCrypto_win.js ├── firstrunDialog.xul ├── forge.min.js ├── pwdex-details-export.xul ├── pwdex-details-import.xul ├── pwdex-global.js ├── pwdex-loginmanager.js ├── pwdexDialog.xul └── storage-Legacy.js ├── icon.png ├── install.rdf ├── locale ├── ca │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── da-DK │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── de │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── en-US │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── es-AR │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── es-ES │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── fa-IR │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── fr │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── hr-HR │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── hu-HU │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── it-IT │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── ja-JP │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── nl │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── pl-PL │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── pt-BR │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── ru-RU │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── sk-SK │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── sq-AL │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── tr-TR │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── uk-UA │ ├── passwordexporter.dtd │ └── passwordexporter.properties └── zh-TW │ ├── passwordexporter.dtd │ └── passwordexporter.properties ├── release.cmd ├── skin ├── logo.png └── passwordexporter.css └── update.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | *.exe 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/ChromeWindowsLoginCrypto.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/ChromeWindowsLoginCrypto.jsm -------------------------------------------------------------------------------- /chrome/OSCrypto.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/OSCrypto.jsm -------------------------------------------------------------------------------- /chrome/OSCrypto_win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/OSCrypto_win.js -------------------------------------------------------------------------------- /chrome/firstrunDialog.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/firstrunDialog.xul -------------------------------------------------------------------------------- /chrome/forge.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/forge.min.js -------------------------------------------------------------------------------- /chrome/pwdex-details-export.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/pwdex-details-export.xul -------------------------------------------------------------------------------- /chrome/pwdex-details-import.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/pwdex-details-import.xul -------------------------------------------------------------------------------- /chrome/pwdex-global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/pwdex-global.js -------------------------------------------------------------------------------- /chrome/pwdex-loginmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/pwdex-loginmanager.js -------------------------------------------------------------------------------- /chrome/pwdexDialog.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/pwdexDialog.xul -------------------------------------------------------------------------------- /chrome/storage-Legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/chrome/storage-Legacy.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/icon.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/install.rdf -------------------------------------------------------------------------------- /locale/ca/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/ca/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/ca/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/ca/passwordexporter.properties -------------------------------------------------------------------------------- /locale/da-DK/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/da-DK/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/da-DK/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/da-DK/passwordexporter.properties -------------------------------------------------------------------------------- /locale/de/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/de/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/de/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/de/passwordexporter.properties -------------------------------------------------------------------------------- /locale/en-US/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/en-US/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/en-US/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/en-US/passwordexporter.properties -------------------------------------------------------------------------------- /locale/es-AR/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/es-AR/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/es-AR/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/es-AR/passwordexporter.properties -------------------------------------------------------------------------------- /locale/es-ES/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/es-ES/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/es-ES/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/es-ES/passwordexporter.properties -------------------------------------------------------------------------------- /locale/fa-IR/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/fa-IR/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/fa-IR/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/fa-IR/passwordexporter.properties -------------------------------------------------------------------------------- /locale/fr/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/fr/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/fr/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/fr/passwordexporter.properties -------------------------------------------------------------------------------- /locale/hr-HR/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/hr-HR/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/hr-HR/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/hr-HR/passwordexporter.properties -------------------------------------------------------------------------------- /locale/hu-HU/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/hu-HU/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/hu-HU/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/hu-HU/passwordexporter.properties -------------------------------------------------------------------------------- /locale/it-IT/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/it-IT/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/it-IT/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/it-IT/passwordexporter.properties -------------------------------------------------------------------------------- /locale/ja-JP/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/ja-JP/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/ja-JP/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/ja-JP/passwordexporter.properties -------------------------------------------------------------------------------- /locale/nl/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/nl/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/nl/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/nl/passwordexporter.properties -------------------------------------------------------------------------------- /locale/pl-PL/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/pl-PL/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/pl-PL/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/pl-PL/passwordexporter.properties -------------------------------------------------------------------------------- /locale/pt-BR/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/pt-BR/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/pt-BR/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/pt-BR/passwordexporter.properties -------------------------------------------------------------------------------- /locale/ru-RU/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/ru-RU/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/ru-RU/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/ru-RU/passwordexporter.properties -------------------------------------------------------------------------------- /locale/sk-SK/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/sk-SK/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/sk-SK/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/sk-SK/passwordexporter.properties -------------------------------------------------------------------------------- /locale/sq-AL/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/sq-AL/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/sq-AL/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/sq-AL/passwordexporter.properties -------------------------------------------------------------------------------- /locale/tr-TR/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/tr-TR/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/tr-TR/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/tr-TR/passwordexporter.properties -------------------------------------------------------------------------------- /locale/uk-UA/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/uk-UA/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/uk-UA/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/uk-UA/passwordexporter.properties -------------------------------------------------------------------------------- /locale/zh-TW/passwordexporter.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/zh-TW/passwordexporter.dtd -------------------------------------------------------------------------------- /locale/zh-TW/passwordexporter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/locale/zh-TW/passwordexporter.properties -------------------------------------------------------------------------------- /release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/release.cmd -------------------------------------------------------------------------------- /skin/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/skin/logo.png -------------------------------------------------------------------------------- /skin/passwordexporter.css: -------------------------------------------------------------------------------- 1 | #pwdex-icon { 2 | list-style-image: url("chrome://pwdbackuptool/skin/logo.png"); 3 | } -------------------------------------------------------------------------------- /update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/password-backup-tool/HEAD/update.xml --------------------------------------------------------------------------------