├── .eslintrc.js ├── .github └── workflows │ └── CI.yaml ├── .gitignore ├── LICENSE.md ├── README.md ├── package.json └── src ├── app.css ├── app.html ├── app.js ├── background.js ├── img ├── icon-48.png └── icon-96.png ├── manifest.json ├── options.css ├── options.html └── options.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/CI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/.github/workflows/CI.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | 4 | *.xpi 5 | web-ext-artifacts 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/package.json -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/app.html -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/app.js -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/background.js -------------------------------------------------------------------------------- /src/img/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/img/icon-48.png -------------------------------------------------------------------------------- /src/img/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/img/icon-96.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/options.css -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/options.html -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MethodGrab/firefox-custom-new-tab-page/HEAD/src/options.js --------------------------------------------------------------------------------