├── .gitignore ├── README.md ├── background.js ├── icon.png ├── img ├── screenshot-hotkey.png ├── screenshot-save.png ├── screenshot-success.png └── screenshot.png ├── manifest.json └── popup ├── popup.css ├── popup.html └── popup.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/README.md -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/background.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/icon.png -------------------------------------------------------------------------------- /img/screenshot-hotkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/img/screenshot-hotkey.png -------------------------------------------------------------------------------- /img/screenshot-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/img/screenshot-save.png -------------------------------------------------------------------------------- /img/screenshot-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/img/screenshot-success.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/manifest.json -------------------------------------------------------------------------------- /popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/popup/popup.css -------------------------------------------------------------------------------- /popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/popup/popup.html -------------------------------------------------------------------------------- /popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bym0/hoarder-firefox/HEAD/popup/popup.js --------------------------------------------------------------------------------