├── .gitignore ├── .jshintrc ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.txt ├── Readme.md ├── _locales ├── de │ └── messages.json └── en │ └── messages.json ├── content-script.js ├── icon.png ├── icon.svg ├── icon32.png ├── icon64.png ├── main.js ├── manifest.json ├── options.html └── options.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/.jshintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/Readme.md -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/_locales/de/messages.json -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/content-script.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/icon.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/icon.svg -------------------------------------------------------------------------------- /icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/icon32.png -------------------------------------------------------------------------------- /icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/icon64.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/main.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/manifest.json -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mathnerd314/repagination/HEAD/options.js --------------------------------------------------------------------------------