FunnyJunk Style Fix

Fixes various styles and adds new features to FJ

FunnyJunk Style Fix क्या है?

FunnyJunk Style Fix Tridaak द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fixes various styles and adds new features to FJ"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FunnyJunk Style Fix एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}