├── .gitignore ├── LICENSE ├── README.md ├── background.js ├── common.js ├── icons ├── cacheicons │ ├── archiveis.png │ ├── google.png │ ├── mementoweb.png │ ├── waybackmachine.png │ └── webcitation.png ├── page-16.png ├── page-32.png └── tb-icon-large.png ├── manifest.json ├── popup.htm └── popup.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | .project 3 | .settings 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/background.js -------------------------------------------------------------------------------- /common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/common.js -------------------------------------------------------------------------------- /icons/cacheicons/archiveis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/cacheicons/archiveis.png -------------------------------------------------------------------------------- /icons/cacheicons/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/cacheicons/google.png -------------------------------------------------------------------------------- /icons/cacheicons/mementoweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/cacheicons/mementoweb.png -------------------------------------------------------------------------------- /icons/cacheicons/waybackmachine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/cacheicons/waybackmachine.png -------------------------------------------------------------------------------- /icons/cacheicons/webcitation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/cacheicons/webcitation.png -------------------------------------------------------------------------------- /icons/page-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/page-16.png -------------------------------------------------------------------------------- /icons/page-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/page-32.png -------------------------------------------------------------------------------- /icons/tb-icon-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/icons/tb-icon-large.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/manifest.json -------------------------------------------------------------------------------- /popup.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/popup.htm -------------------------------------------------------------------------------- /popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/resurrect-pages/HEAD/popup.js --------------------------------------------------------------------------------