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".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου 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 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"
    ]
}