├── README.md ├── _config.yml ├── _devel └── hc-devel-notes.txt ├── _layouts └── default.html ├── chrome.manifest ├── chrome ├── content │ ├── HideCaption.css │ ├── HideCaption.js │ ├── options.xul │ ├── overlay.xul │ └── windows.xml ├── locale │ ├── en-US │ │ └── option.dtd │ ├── zh-CN │ │ └── option.dtd │ └── zh-TW │ │ └── option.dtd └── skin │ ├── Close.gif │ ├── Drag.gif │ ├── Maximize.gif │ ├── Minimize.gif │ ├── Restore.gif │ └── style.css ├── index.md ├── install.rdf └── web_public └── content ├── help └── dynbars_en.html └── skin └── hcp_icon.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/_config.yml -------------------------------------------------------------------------------- /_devel/hc-devel-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/_devel/hc-devel-notes.txt -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/HideCaption.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/content/HideCaption.css -------------------------------------------------------------------------------- /chrome/content/HideCaption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/content/HideCaption.js -------------------------------------------------------------------------------- /chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/content/options.xul -------------------------------------------------------------------------------- /chrome/content/overlay.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/content/overlay.xul -------------------------------------------------------------------------------- /chrome/content/windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/content/windows.xml -------------------------------------------------------------------------------- /chrome/locale/en-US/option.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/locale/en-US/option.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/option.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/locale/zh-CN/option.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-TW/option.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/locale/zh-TW/option.dtd -------------------------------------------------------------------------------- /chrome/skin/Close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/skin/Close.gif -------------------------------------------------------------------------------- /chrome/skin/Drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/skin/Drag.gif -------------------------------------------------------------------------------- /chrome/skin/Maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/skin/Maximize.gif -------------------------------------------------------------------------------- /chrome/skin/Minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/skin/Minimize.gif -------------------------------------------------------------------------------- /chrome/skin/Restore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/skin/Restore.gif -------------------------------------------------------------------------------- /chrome/skin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/chrome/skin/style.css -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/index.md -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/install.rdf -------------------------------------------------------------------------------- /web_public/content/help/dynbars_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/web_public/content/help/dynbars_en.html -------------------------------------------------------------------------------- /web_public/content/skin/hcp_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Javier-DarthPalpatine/firefox-hide-caption-titlebar-plus/HEAD/web_public/content/skin/hcp_icon.png --------------------------------------------------------------------------------