├── .gitignore ├── LICENSE ├── README.md ├── bootstrap.js ├── chrome.manifest ├── content └── prefloader.js ├── defaults └── preferences │ └── greedy-cache.js ├── icon.png ├── install.rdf ├── options.xul ├── release.cmd ├── skin ├── icoff.png └── icon.png └── update.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | *.exe 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/chrome.manifest -------------------------------------------------------------------------------- /content/prefloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/content/prefloader.js -------------------------------------------------------------------------------- /defaults/preferences/greedy-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/defaults/preferences/greedy-cache.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/icon.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/install.rdf -------------------------------------------------------------------------------- /options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/options.xul -------------------------------------------------------------------------------- /release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/release.cmd -------------------------------------------------------------------------------- /skin/icoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/skin/icoff.png -------------------------------------------------------------------------------- /skin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/skin/icon.png -------------------------------------------------------------------------------- /update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/greedy-cache/HEAD/update.xml --------------------------------------------------------------------------------