├── .DS_Store ├── Legacy ├── .DS_Store ├── chrome.manifest ├── chrome │ ├── .DS_Store │ ├── content │ │ ├── firefoxOverlay.xul │ │ ├── options.xul │ │ └── undo.js │ ├── locale │ │ ├── bg │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── ca-AD │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── cs-CS │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── da-DA │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── de-DE │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── el │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── en-US │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── es-ES │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── fa-IR │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── fi-FI │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── fr-FR │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── hu-HU │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── it-IT │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── ko-KR │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── mk-MK │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── nb-NO │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── pl-PL │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── pt-BR │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── pt-PT │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── ro-RO │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── ru-RU │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── sk-SK │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── sl │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── sr-SR │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── tr-TR │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ ├── vi-VI │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ │ └── zh-CN │ │ │ ├── prefwindow.dtd │ │ │ └── undoclosedtabsbutton.properties │ └── skin │ │ ├── icon.png │ │ ├── overlay.css │ │ ├── toolbar-button1.png │ │ └── toolbar-button2.png ├── components │ └── undoclosedtabsbutton.js ├── defaults │ └── preferences │ │ └── undoclosedtab.js ├── install.rdf └── install.sh └── WebExtension ├── .DS_Store ├── common.js ├── data ├── .DS_Store ├── icons │ ├── .DS_Store │ ├── 128.png │ ├── 16.png │ ├── 256.png │ ├── 32.png │ ├── 48.png │ ├── 64.png │ └── disabled │ │ ├── 128.png │ │ ├── 16.png │ │ ├── 32.png │ │ ├── 48.png │ │ └── 64.png ├── options │ ├── index.html │ └── index.js └── popup │ ├── document.png │ ├── index.css │ ├── index.html │ ├── index.js │ └── window.png └── manifest.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/.DS_Store -------------------------------------------------------------------------------- /Legacy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/.DS_Store -------------------------------------------------------------------------------- /Legacy/chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome.manifest -------------------------------------------------------------------------------- /Legacy/chrome/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/.DS_Store -------------------------------------------------------------------------------- /Legacy/chrome/content/firefoxOverlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/content/firefoxOverlay.xul -------------------------------------------------------------------------------- /Legacy/chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/content/options.xul -------------------------------------------------------------------------------- /Legacy/chrome/content/undo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/content/undo.js -------------------------------------------------------------------------------- /Legacy/chrome/locale/bg/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/bg/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/bg/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/bg/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/ca-AD/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ca-AD/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/ca-AD/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ca-AD/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/cs-CS/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/cs-CS/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/cs-CS/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/cs-CS/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/da-DA/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/da-DA/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/da-DA/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/da-DA/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/de-DE/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/de-DE/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/de-DE/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/de-DE/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/el/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/el/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/el/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/el/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/en-US/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/en-US/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/en-US/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/en-US/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/es-ES/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/es-ES/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/es-ES/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/es-ES/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/fa-IR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/fa-IR/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/fa-IR/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/fa-IR/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/fi-FI/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/fi-FI/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/fi-FI/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/fi-FI/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/fr-FR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/fr-FR/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/fr-FR/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/fr-FR/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/hu-HU/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/hu-HU/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/hu-HU/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/hu-HU/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/it-IT/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/it-IT/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/it-IT/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/it-IT/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/ko-KR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ko-KR/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/ko-KR/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ko-KR/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/mk-MK/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/mk-MK/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/mk-MK/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/mk-MK/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/nb-NO/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/nb-NO/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/nb-NO/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/nb-NO/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/pl-PL/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/pl-PL/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/pl-PL/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/pl-PL/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/pt-BR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/pt-BR/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/pt-BR/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/pt-BR/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/pt-PT/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/pt-PT/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/pt-PT/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/pt-PT/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/ro-RO/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ro-RO/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/ro-RO/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ro-RO/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/ru-RU/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ru-RU/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/ru-RU/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/ru-RU/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/sk-SK/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/sk-SK/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/sk-SK/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/sk-SK/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/sl/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/sl/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/sl/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/sl/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/sr-SR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/sr-SR/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/sr-SR/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/sr-SR/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/tr-TR/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/tr-TR/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/tr-TR/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/tr-TR/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/vi-VI/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/vi-VI/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/vi-VI/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/vi-VI/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/locale/zh-CN/prefwindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/zh-CN/prefwindow.dtd -------------------------------------------------------------------------------- /Legacy/chrome/locale/zh-CN/undoclosedtabsbutton.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/locale/zh-CN/undoclosedtabsbutton.properties -------------------------------------------------------------------------------- /Legacy/chrome/skin/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/skin/icon.png -------------------------------------------------------------------------------- /Legacy/chrome/skin/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/skin/overlay.css -------------------------------------------------------------------------------- /Legacy/chrome/skin/toolbar-button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/skin/toolbar-button1.png -------------------------------------------------------------------------------- /Legacy/chrome/skin/toolbar-button2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/chrome/skin/toolbar-button2.png -------------------------------------------------------------------------------- /Legacy/components/undoclosedtabsbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/components/undoclosedtabsbutton.js -------------------------------------------------------------------------------- /Legacy/defaults/preferences/undoclosedtab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/defaults/preferences/undoclosedtab.js -------------------------------------------------------------------------------- /Legacy/install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/install.rdf -------------------------------------------------------------------------------- /Legacy/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/Legacy/install.sh -------------------------------------------------------------------------------- /WebExtension/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/.DS_Store -------------------------------------------------------------------------------- /WebExtension/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/common.js -------------------------------------------------------------------------------- /WebExtension/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/.DS_Store -------------------------------------------------------------------------------- /WebExtension/data/icons/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/.DS_Store -------------------------------------------------------------------------------- /WebExtension/data/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/128.png -------------------------------------------------------------------------------- /WebExtension/data/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/16.png -------------------------------------------------------------------------------- /WebExtension/data/icons/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/256.png -------------------------------------------------------------------------------- /WebExtension/data/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/32.png -------------------------------------------------------------------------------- /WebExtension/data/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/48.png -------------------------------------------------------------------------------- /WebExtension/data/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/64.png -------------------------------------------------------------------------------- /WebExtension/data/icons/disabled/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/disabled/128.png -------------------------------------------------------------------------------- /WebExtension/data/icons/disabled/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/disabled/16.png -------------------------------------------------------------------------------- /WebExtension/data/icons/disabled/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/disabled/32.png -------------------------------------------------------------------------------- /WebExtension/data/icons/disabled/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/disabled/48.png -------------------------------------------------------------------------------- /WebExtension/data/icons/disabled/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/icons/disabled/64.png -------------------------------------------------------------------------------- /WebExtension/data/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/options/index.html -------------------------------------------------------------------------------- /WebExtension/data/options/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/options/index.js -------------------------------------------------------------------------------- /WebExtension/data/popup/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/popup/document.png -------------------------------------------------------------------------------- /WebExtension/data/popup/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/popup/index.css -------------------------------------------------------------------------------- /WebExtension/data/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/popup/index.html -------------------------------------------------------------------------------- /WebExtension/data/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/popup/index.js -------------------------------------------------------------------------------- /WebExtension/data/popup/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/data/popup/window.png -------------------------------------------------------------------------------- /WebExtension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andy-portmen/undo-closed-tabs-button/HEAD/WebExtension/manifest.json --------------------------------------------------------------------------------