FunnyJunk Style Fix

Fixes various styles and adds new features to FJ

FunnyJunk Style Fix là gì?

FunnyJunk Style Fix là một tiện ích mở rộng Chrome được phát triển bởi Tridaak, và tính năng chính của nó là "Fixes various styles and adds new features to FJ".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng FunnyJunk Style Fix

Tải xuống các tệp mở rộng FunnyJunk Style Fix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên FunnyJunk Style Fix FunnyJunk Style Fix
ID higjcciaeonohlnmjidhbghihpaiodch
URL Chính Thức https://chromewebstore.google.com/detail/funnyjunk-style-fix/higjcciaeonohlnmjidhbghihpaiodch
Mô tả Fixes various styles and adds new features to FJ
Kích Thước Tệp 1014 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 3.0.2
Cập Nhật Lần Cuối 2020-03-18
Ngày Phát Hành 2020-03-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Tridaak
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}