FunnyJunk Style Fix
Fixes various styles and adds new features to FJ
Что такое FunnyJunk Style Fix?
FunnyJunk Style Fix - это расширение Chrome, разработанное Tridaak, и его основная функция - "Fixes various styles and adds new features to FJ".
Снимки экрана расширения
Скачать файл CRX расширения FunnyJunk Style Fix
Скачайте файлы расширений FunnyJunk Style Fix в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Fixes FJ's styling and has a couple of minor JS bug fixes. It makes FunnyJunk look better with very small styling changes. It is highly customizeable being able to turn parts of the styling and javascript on and off. Adds: -Flag and emoji tooltips -Over 1000 lines of CSS -Holiday styling which turns on and off depending on date -Can be used to strip board and profile styling -Uses high resolution emojis and flags which look great in large screens -Uses font-icons which are smaller in size and easy to manage -Can be used to 'normalize' usernames
Основная информация о расширении
Название | FunnyJunk Style Fix |
ID | higjcciaeonohlnmjidhbghihpaiodch |
Официальный URL | https://chromewebstore.google.com/detail/funnyjunk-style-fix/higjcciaeonohlnmjidhbghihpaiodch |
Описание | Fixes various styles and adds new features to FJ |
Размер файла | 1014 KB |
Количество установок | 43 |
Текущая Версия | 3.0.2 |
Последнее Обновление | 2020-03-18 |
Дата публикации | 2020-03-17 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Tridaak |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FunnyJunk Style Fix", "version": "3.0.2", "description": "Fixes various styles and adds new features to FJ", "options_page": "settings.html", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.funnyjunk.com\/*", "https:\/\/*.funnyjunk.com\/*" ], "js": [ "jQuery.js", "styleFix.js", "contextMenu.js" ] } ], "web_accessible_resources": [ "*.css", "*.js", "*.png", "*.html", "*" ], "permissions": [ "storage", "contextMenus", "activeTab" ] } |