FunnyJunk Style Fix

Fixes various styles and adds new features to FJ

什麼是FunnyJunk Style Fix?

FunnyJunk Style Fix是由Tridaak開發的Chrome擴展程式,該擴展的主要功能是“Fixes various styles and adds new features to FJ”。

擴展截圖

screenshot

下載FunnyJunk Style Fix擴展crx文件

下載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
官方網址 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"
    ]
}