FunnyJunk Style Fix
Fixes various styles and adds new features to FJ
O que é FunnyJunk Style Fix?
FunnyJunk Style Fix é uma extensão do Chrome desenvolvida por Tridaak, e sua principal característica é "Fixes various styles and adds new features to FJ".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão FunnyJunk Style Fix
Baixe arquivos de extensão FunnyJunk Style Fix no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | FunnyJunk Style Fix |
ID | higjcciaeonohlnmjidhbghihpaiodch |
URL Oficial | https://chromewebstore.google.com/detail/funnyjunk-style-fix/higjcciaeonohlnmjidhbghihpaiodch |
Descrição | Fixes various styles and adds new features to FJ |
Tamanho do Arquivo | 1014 KB |
Contagem de Instalações | 43 |
Versão Atual | 3.0.2 |
Última Atualização | 2020-03-18 |
Data de Publicação | 2020-03-17 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Tridaak |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |