├── .gitignore ├── LICENSE ├── Makefile ├── README.rst ├── chrome.manifest ├── chrome └── skin │ └── hicolor │ └── seahorse.svg ├── components └── loginManagerStorage.js ├── content ├── gnome-keyring.js ├── options.js └── options.xul ├── defaults └── preferences │ └── defaults.js ├── install.rdf └── moz-sec-get.sh /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *~ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/README.rst -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/skin/hicolor/seahorse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/chrome/skin/hicolor/seahorse.svg -------------------------------------------------------------------------------- /components/loginManagerStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/components/loginManagerStorage.js -------------------------------------------------------------------------------- /content/gnome-keyring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/content/gnome-keyring.js -------------------------------------------------------------------------------- /content/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/content/options.js -------------------------------------------------------------------------------- /content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/content/options.xul -------------------------------------------------------------------------------- /defaults/preferences/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/defaults/preferences/defaults.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/install.rdf -------------------------------------------------------------------------------- /moz-sec-get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swick/mozilla-gnome-keyring/HEAD/moz-sec-get.sh --------------------------------------------------------------------------------