FunnyJunk Style Fix

Fixes various styles and adds new features to FJ

Cos'è FunnyJunk Style Fix?

FunnyJunk Style Fix è un'estensione di Chrome sviluppata da Tridaak, e la sua funzione principale è "Fixes various styles and adds new features to FJ".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione FunnyJunk Style Fix

Scarica i file di estensione FunnyJunk Style Fix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome FunnyJunk Style Fix FunnyJunk Style Fix
ID higjcciaeonohlnmjidhbghihpaiodch
URL Ufficiale https://chromewebstore.google.com/detail/funnyjunk-style-fix/higjcciaeonohlnmjidhbghihpaiodch
Descrizione Fixes various styles and adds new features to FJ
Dimensione del File 1014 KB
Conteggio Installazioni 43
Versione Corrente 3.0.2
Ultimo Aggiornamento 2020-03-18
Data di Pubblicazione 2020-03-17
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Tridaak
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}