├── .gitignore ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── icon.png ├── index.js ├── manifest.json ├── most recent tab 1.1.png ├── options.html └── options.js /.gitignore: -------------------------------------------------------------------------------- 1 | web-ext-artifacts/ 2 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/icon.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/manifest.json -------------------------------------------------------------------------------- /most recent tab 1.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/most recent tab 1.1.png -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/options.html -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thePaulV/Most-Recent-Tab/HEAD/options.js --------------------------------------------------------------------------------