FunnyJunk Style Fix
Fixes various styles and adds new features to FJ
Wat is FunnyJunk Style Fix?
FunnyJunk Style Fix is een Chrome-extensie ontwikkeld door Tridaak, en de belangrijkste functie is "Fixes various styles and adds new features to FJ".
Extensie Screenshots
Download het CRX-bestand van de extensie FunnyJunk Style Fix
Download FunnyJunk Style Fix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | FunnyJunk Style Fix |
ID | higjcciaeonohlnmjidhbghihpaiodch |
Officiële URL | https://chromewebstore.google.com/detail/funnyjunk-style-fix/higjcciaeonohlnmjidhbghihpaiodch |
Beschrijving | Fixes various styles and adds new features to FJ |
Bestandsgrootte | 1014 KB |
Aantal Installaties | 43 |
Huidige Versie | 3.0.2 |
Laatst Bijgewerkt | 2020-03-18 |
Publicatiedatum | 2020-03-17 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Tridaak |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |