├── .tx └── config ├── LICENSE ├── README.md ├── bootstrap.js ├── chrome.manifest ├── content ├── greasyscripts.jsm ├── integrationProviders.jsm ├── preferences.jsm └── utils.jsm ├── icon.png ├── icon64.png ├── install.rdf ├── locale ├── de │ ├── greasyscripts.properties │ └── options.dtd ├── en_US │ ├── greasyscripts.properties │ └── options.dtd ├── fr │ ├── greasyscripts.properties │ └── options.dtd ├── nl │ ├── greasyscripts.properties │ └── options.dtd ├── ru │ ├── greasyscripts.properties │ └── options.dtd ├── tr │ ├── greasyscripts.properties │ └── options.dtd ├── zh_CN │ ├── greasyscripts.properties │ └── options.dtd └── zh_TW │ ├── greasyscripts.properties │ └── options.dtd ├── options.xul └── skin ├── dynamic.css └── greasyscripts.css /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/.tx/config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/bootstrap.js -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/chrome.manifest -------------------------------------------------------------------------------- /content/greasyscripts.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/content/greasyscripts.jsm -------------------------------------------------------------------------------- /content/integrationProviders.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/content/integrationProviders.jsm -------------------------------------------------------------------------------- /content/preferences.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/content/preferences.jsm -------------------------------------------------------------------------------- /content/utils.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/content/utils.jsm -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/icon.png -------------------------------------------------------------------------------- /icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/icon64.png -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/install.rdf -------------------------------------------------------------------------------- /locale/de/greasyscripts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/de/greasyscripts.properties -------------------------------------------------------------------------------- /locale/de/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/de/options.dtd -------------------------------------------------------------------------------- /locale/en_US/greasyscripts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/en_US/greasyscripts.properties -------------------------------------------------------------------------------- /locale/en_US/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/en_US/options.dtd -------------------------------------------------------------------------------- /locale/fr/greasyscripts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/fr/greasyscripts.properties -------------------------------------------------------------------------------- /locale/fr/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/fr/options.dtd -------------------------------------------------------------------------------- /locale/nl/greasyscripts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/nl/greasyscripts.properties -------------------------------------------------------------------------------- /locale/nl/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/nl/options.dtd -------------------------------------------------------------------------------- /locale/ru/greasyscripts.properties: -------------------------------------------------------------------------------- 1 | scripts_from = Скрипты от 2 | available = доступно 3 | -------------------------------------------------------------------------------- /locale/ru/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/ru/options.dtd -------------------------------------------------------------------------------- /locale/tr/greasyscripts.properties: -------------------------------------------------------------------------------- 1 | scripts_from = Betikleri 2 | available = uygun 3 | -------------------------------------------------------------------------------- /locale/tr/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/tr/options.dtd -------------------------------------------------------------------------------- /locale/zh_CN/greasyscripts.properties: -------------------------------------------------------------------------------- 1 | scripts_from = 脚本网站 2 | available = 项可用 3 | -------------------------------------------------------------------------------- /locale/zh_CN/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/zh_CN/options.dtd -------------------------------------------------------------------------------- /locale/zh_TW/greasyscripts.properties: -------------------------------------------------------------------------------- 1 | scripts_from = 腳本網站 2 | available = 項可用 3 | -------------------------------------------------------------------------------- /locale/zh_TW/options.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/locale/zh_TW/options.dtd -------------------------------------------------------------------------------- /options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/options.xul -------------------------------------------------------------------------------- /skin/dynamic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/skin/dynamic.css -------------------------------------------------------------------------------- /skin/greasyscripts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ede123/greasy-scripts/HEAD/skin/greasyscripts.css --------------------------------------------------------------------------------