├── .gitignore ├── LICENSE ├── README.md ├── bootstrap.js ├── chrome.manifest ├── icon.png ├── install.rdf ├── options.xul ├── release.cmd ├── skin ├── style.css └── urlbar-icon.png └── update.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.xpi 2 | *.exe 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- 1 | skin lull-the-tabs classic/1.0 skin/ 2 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/icon.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/install.rdf -------------------------------------------------------------------------------- /options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/options.xul -------------------------------------------------------------------------------- /release.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/release.cmd -------------------------------------------------------------------------------- /skin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/skin/style.css -------------------------------------------------------------------------------- /skin/urlbar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/skin/urlbar-icon.png -------------------------------------------------------------------------------- /update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustOff/lull-the-tabs/HEAD/update.xml --------------------------------------------------------------------------------