├── README.md ├── bootstrap.js ├── chrome.manifest ├── chrome └── icons │ └── default │ ├── cutebuttons.ico │ └── cutebuttons.xpm ├── content ├── BlurDisabledIcons.css ├── CheckmarkButtonUglyFix.css ├── Crystal Project License.txt ├── Icons.CheckmarkButton.css ├── Icons.CheckmarkButtonHover.css ├── Icons.CheckmarkMenu.css ├── Icons.CheckmarkMenuHover.css ├── Icons.Hover.css ├── Icons.Normal.css ├── Icons.RadioButton.css ├── Icons.RadioButtonHover.css ├── Icons.RadioMenu.css ├── Icons.RadioMenuHover.css ├── Icons.png ├── NoIconsButtons.css ├── NoIconsMenus.css ├── OSXFix.css ├── RadioButtonUglyFix.css ├── RotateIcons.css ├── Statusbar-4evar.css ├── Statusbar.css ├── UnixFix.css ├── common.jsm ├── cutebuttons16.png ├── cutebuttons32.png ├── locales.zip ├── locales │ ├── ar │ │ ├── global.dtd │ │ └── name.properties │ ├── bg-BG │ │ ├── global.dtd │ │ └── name.properties │ ├── ca-ES │ │ ├── global.dtd │ │ └── name.properties │ ├── cs-CZ │ │ ├── global.dtd │ │ └── name.properties │ ├── da-DK │ │ ├── global.dtd │ │ └── name.properties │ ├── de │ │ ├── global.dtd │ │ └── name.properties │ ├── el-GR │ │ ├── global.dtd │ │ └── name.properties │ ├── en │ │ ├── global.dtd │ │ └── name.properties │ ├── es │ │ ├── global.dtd │ │ └── name.properties │ ├── et-EE │ │ ├── global.dtd │ │ └── name.properties │ ├── eu-ES │ │ ├── global.dtd │ │ └── name.properties │ ├── fi-FI │ │ ├── global.dtd │ │ └── name.properties │ ├── fr │ │ ├── global.dtd │ │ └── name.properties │ ├── he-IL │ │ ├── global.dtd │ │ └── name.properties │ ├── hi-IN │ │ ├── global.dtd │ │ └── name.properties │ ├── hr-HR │ │ ├── global.dtd │ │ └── name.properties │ ├── hu-HU │ │ ├── global.dtd │ │ └── name.properties │ ├── it │ │ ├── global.dtd │ │ └── name.properties │ ├── ja-JP │ │ ├── global.dtd │ │ └── name.properties │ ├── ko-KR │ │ ├── global.dtd │ │ └── name.properties │ ├── nl │ │ ├── global.dtd │ │ └── name.properties │ ├── pl-PL │ │ ├── global.dtd │ │ └── name.properties │ ├── pt │ │ ├── global.dtd │ │ └── name.properties │ ├── ro-RO │ │ ├── global.dtd │ │ └── name.properties │ ├── ru-RU │ │ ├── global.dtd │ │ └── name.properties │ ├── sk-SK │ │ ├── global.dtd │ │ └── name.properties │ ├── sr-SP │ │ ├── global.dtd │ │ └── name.properties │ ├── sv-SE │ │ ├── global.dtd │ │ └── name.properties │ ├── tr-TR │ │ ├── global.dtd │ │ └── name.properties │ ├── uk-UA │ │ ├── global.dtd │ │ └── name.properties │ ├── vi-VN │ │ ├── global.dtd │ │ └── name.properties │ ├── zh-CHS │ │ ├── global.dtd │ │ └── name.properties │ └── zh-CHT │ │ ├── global.dtd │ │ └── name.properties ├── mosaic.brighter.png ├── mosaic.faded.png ├── mosaic.gray.png ├── mosaic.normal.png ├── options.js ├── options.xul ├── overlay.jsm ├── statusbar.png └── toolbarbutton.css ├── icon.png ├── icon64.png ├── includes ├── LICENSE └── buttons.js └── install.rdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/icons/default/cutebuttons.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/chrome/icons/default/cutebuttons.ico -------------------------------------------------------------------------------- /chrome/icons/default/cutebuttons.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/chrome/icons/default/cutebuttons.xpm -------------------------------------------------------------------------------- /content/BlurDisabledIcons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/BlurDisabledIcons.css -------------------------------------------------------------------------------- /content/CheckmarkButtonUglyFix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/CheckmarkButtonUglyFix.css -------------------------------------------------------------------------------- /content/Crystal Project License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Crystal Project License.txt -------------------------------------------------------------------------------- /content/Icons.CheckmarkButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.CheckmarkButton.css -------------------------------------------------------------------------------- /content/Icons.CheckmarkButtonHover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.CheckmarkButtonHover.css -------------------------------------------------------------------------------- /content/Icons.CheckmarkMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.CheckmarkMenu.css -------------------------------------------------------------------------------- /content/Icons.CheckmarkMenuHover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.CheckmarkMenuHover.css -------------------------------------------------------------------------------- /content/Icons.Hover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.Hover.css -------------------------------------------------------------------------------- /content/Icons.Normal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.Normal.css -------------------------------------------------------------------------------- /content/Icons.RadioButton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.RadioButton.css -------------------------------------------------------------------------------- /content/Icons.RadioButtonHover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.RadioButtonHover.css -------------------------------------------------------------------------------- /content/Icons.RadioMenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.RadioMenu.css -------------------------------------------------------------------------------- /content/Icons.RadioMenuHover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.RadioMenuHover.css -------------------------------------------------------------------------------- /content/Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Icons.png -------------------------------------------------------------------------------- /content/NoIconsButtons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/NoIconsButtons.css -------------------------------------------------------------------------------- /content/NoIconsMenus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/NoIconsMenus.css -------------------------------------------------------------------------------- /content/OSXFix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/OSXFix.css -------------------------------------------------------------------------------- /content/RadioButtonUglyFix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/RadioButtonUglyFix.css -------------------------------------------------------------------------------- /content/RotateIcons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/RotateIcons.css -------------------------------------------------------------------------------- /content/Statusbar-4evar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Statusbar-4evar.css -------------------------------------------------------------------------------- /content/Statusbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/Statusbar.css -------------------------------------------------------------------------------- /content/UnixFix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/UnixFix.css -------------------------------------------------------------------------------- /content/common.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/common.jsm -------------------------------------------------------------------------------- /content/cutebuttons16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/cutebuttons16.png -------------------------------------------------------------------------------- /content/cutebuttons32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/cutebuttons32.png -------------------------------------------------------------------------------- /content/locales.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales.zip -------------------------------------------------------------------------------- /content/locales/ar/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/ar/global.dtd -------------------------------------------------------------------------------- /content/locales/ar/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=أزرار لطيف -------------------------------------------------------------------------------- /content/locales/bg-BG/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/bg-BG/global.dtd -------------------------------------------------------------------------------- /content/locales/bg-BG/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=СладъкКопчета -------------------------------------------------------------------------------- /content/locales/ca-ES/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/ca-ES/global.dtd -------------------------------------------------------------------------------- /content/locales/ca-ES/name.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/ca-ES/name.properties -------------------------------------------------------------------------------- /content/locales/cs-CZ/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/cs-CZ/global.dtd -------------------------------------------------------------------------------- /content/locales/cs-CZ/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=RoztomilýTlačítka -------------------------------------------------------------------------------- /content/locales/da-DK/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/da-DK/global.dtd -------------------------------------------------------------------------------- /content/locales/da-DK/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=CuteKnapper -------------------------------------------------------------------------------- /content/locales/de/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/de/global.dtd -------------------------------------------------------------------------------- /content/locales/de/name.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/de/name.properties -------------------------------------------------------------------------------- /content/locales/el-GR/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/el-GR/global.dtd -------------------------------------------------------------------------------- /content/locales/el-GR/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=χαριτωμένοΚουμπιά -------------------------------------------------------------------------------- /content/locales/en/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/en/global.dtd -------------------------------------------------------------------------------- /content/locales/en/name.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/en/name.properties -------------------------------------------------------------------------------- /content/locales/es/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/es/global.dtd -------------------------------------------------------------------------------- /content/locales/es/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=BotonesLindos -------------------------------------------------------------------------------- /content/locales/et-EE/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/et-EE/global.dtd -------------------------------------------------------------------------------- /content/locales/et-EE/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=ArmasNupud -------------------------------------------------------------------------------- /content/locales/eu-ES/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/eu-ES/global.dtd -------------------------------------------------------------------------------- /content/locales/eu-ES/name.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/eu-ES/name.properties -------------------------------------------------------------------------------- /content/locales/fi-FI/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/fi-FI/global.dtd -------------------------------------------------------------------------------- /content/locales/fi-FI/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=SöpöPainikkeet -------------------------------------------------------------------------------- /content/locales/fr/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/fr/global.dtd -------------------------------------------------------------------------------- /content/locales/fr/name.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/fr/name.properties -------------------------------------------------------------------------------- /content/locales/he-IL/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/he-IL/global.dtd -------------------------------------------------------------------------------- /content/locales/he-IL/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=כפתורים חמודים -------------------------------------------------------------------------------- /content/locales/hi-IN/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/hi-IN/global.dtd -------------------------------------------------------------------------------- /content/locales/hi-IN/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=प्याराबुटोनस -------------------------------------------------------------------------------- /content/locales/hr-HR/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/hr-HR/global.dtd -------------------------------------------------------------------------------- /content/locales/hr-HR/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=SlatkaTipke -------------------------------------------------------------------------------- /content/locales/hu-HU/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/hu-HU/global.dtd -------------------------------------------------------------------------------- /content/locales/hu-HU/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=AranyosGombok -------------------------------------------------------------------------------- /content/locales/it/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/it/global.dtd -------------------------------------------------------------------------------- /content/locales/it/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=PulsantiCarino -------------------------------------------------------------------------------- /content/locales/ja-JP/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/ja-JP/global.dtd -------------------------------------------------------------------------------- /content/locales/ja-JP/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=かわいいボタン -------------------------------------------------------------------------------- /content/locales/ko-KR/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/ko-KR/global.dtd -------------------------------------------------------------------------------- /content/locales/ko-KR/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=귀여운 버튼 -------------------------------------------------------------------------------- /content/locales/nl/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/nl/global.dtd -------------------------------------------------------------------------------- /content/locales/nl/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=SchattigeKnoppen -------------------------------------------------------------------------------- /content/locales/pl-PL/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/pl-PL/global.dtd -------------------------------------------------------------------------------- /content/locales/pl-PL/name.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/pl-PL/name.properties -------------------------------------------------------------------------------- /content/locales/pt/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/pt/global.dtd -------------------------------------------------------------------------------- /content/locales/pt/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=FofaBotões -------------------------------------------------------------------------------- /content/locales/ro-RO/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/ro-RO/global.dtd -------------------------------------------------------------------------------- /content/locales/ro-RO/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=DrăguţButoane -------------------------------------------------------------------------------- /content/locales/ru-RU/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/ru-RU/global.dtd -------------------------------------------------------------------------------- /content/locales/ru-RU/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=СимпатичныеКнопки -------------------------------------------------------------------------------- /content/locales/sk-SK/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/sk-SK/global.dtd -------------------------------------------------------------------------------- /content/locales/sk-SK/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=RozkošnýTlačidlá -------------------------------------------------------------------------------- /content/locales/sr-SP/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/sr-SP/global.dtd -------------------------------------------------------------------------------- /content/locales/sr-SP/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=Цутедугмад -------------------------------------------------------------------------------- /content/locales/sv-SE/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/sv-SE/global.dtd -------------------------------------------------------------------------------- /content/locales/sv-SE/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=SötKnappar -------------------------------------------------------------------------------- /content/locales/tr-TR/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/tr-TR/global.dtd -------------------------------------------------------------------------------- /content/locales/tr-TR/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=SevimliDüğmeler -------------------------------------------------------------------------------- /content/locales/uk-UA/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/uk-UA/global.dtd -------------------------------------------------------------------------------- /content/locales/uk-UA/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=симпатичніКнопки -------------------------------------------------------------------------------- /content/locales/vi-VN/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/vi-VN/global.dtd -------------------------------------------------------------------------------- /content/locales/vi-VN/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=dễ thương nút -------------------------------------------------------------------------------- /content/locales/zh-CHS/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/zh-CHS/global.dtd -------------------------------------------------------------------------------- /content/locales/zh-CHS/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=可爱的按钮 -------------------------------------------------------------------------------- /content/locales/zh-CHT/global.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/locales/zh-CHT/global.dtd -------------------------------------------------------------------------------- /content/locales/zh-CHT/name.properties: -------------------------------------------------------------------------------- 1 | CuteButtons=可愛的按鈕 -------------------------------------------------------------------------------- /content/mosaic.brighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/mosaic.brighter.png -------------------------------------------------------------------------------- /content/mosaic.faded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/mosaic.faded.png -------------------------------------------------------------------------------- /content/mosaic.gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/mosaic.gray.png -------------------------------------------------------------------------------- /content/mosaic.normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/mosaic.normal.png -------------------------------------------------------------------------------- /content/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/options.js -------------------------------------------------------------------------------- /content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/options.xul -------------------------------------------------------------------------------- /content/overlay.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/overlay.jsm -------------------------------------------------------------------------------- /content/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/statusbar.png -------------------------------------------------------------------------------- /content/toolbarbutton.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/content/toolbarbutton.css -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/icon.png -------------------------------------------------------------------------------- /icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/icon64.png -------------------------------------------------------------------------------- /includes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/includes/LICENSE -------------------------------------------------------------------------------- /includes/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/includes/buttons.js -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChoGGi/CuteButtons/HEAD/install.rdf --------------------------------------------------------------------------------