FunnyJunk Style Fix
Fixes various styles and adds new features to FJ
Qu'est-ce que FunnyJunk Style Fix ?
FunnyJunk Style Fix est une extension Chrome développée par Tridaak, et sa fonction principale est "Fixes various styles and adds new features to FJ".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension FunnyJunk Style Fix
Téléchargez les fichiers d'extension FunnyJunk Style Fix au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | FunnyJunk Style Fix |
ID | higjcciaeonohlnmjidhbghihpaiodch |
URL Officiel | https://chromewebstore.google.com/detail/funnyjunk-style-fix/higjcciaeonohlnmjidhbghihpaiodch |
Description | Fixes various styles and adds new features to FJ |
Taille du Fichier | 1014 KB |
Nombre d'Installations | 43 |
Version Actuelle | 3.0.2 |
Dernière Mise à Jour | 2020-03-18 |
Date de Publication | 2020-03-17 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Tridaak |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |