Custom Scrollbars

Give your browser a personal touch with customized scrollbars!

什麼是Custom Scrollbars?

Custom Scrollbars是由Wesley Branton開發的Chrome擴展程式,該擴展的主要功能是“Give your browser a personal touch with customized scrollbars!”。

擴展截圖

screenshot

下載Custom Scrollbars擴展crx文件

下載Custom Scrollbars擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Give your browser a personalized touch with custom scrollbar colors! You can select from any range of colors and toggle between the default width and thin scrollbar... or hide it altogether if that's what floats your boat.                    

擴展基本資訊

名稱 Custom Scrollbars Custom Scrollbars
ID ddbipglapfjojhfapmpmofnaoellkggc
官方網址 https://chromewebstore.google.com/detail/custom-scrollbars/ddbipglapfjojhfapmpmofnaoellkggc
簡介 Give your browser a personal touch with customized scrollbars!
檔案大小 150 KB
安裝次數 8,547
目前版本 4.3
更新時間 2024-02-07
上架時間 2021-04-17
評分 4.44/5 共 39 次評分
開發者 Wesley Branton
電子郵箱 [email protected]
付費類型 free
擴展官網 https://customscrollbars.com
說明頁面URL https://customscrollbars.com/help
隱私政策頁面URL https://addons.wesleybranton.com/privacy
支援的語言 de,en,fr,nl,es,it,pl,fi,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "4.3",
    "description": "__MSG_extensionDescription__",
    "author": "Wesley Branton",
    "default_locale": "en",
    "icons": {
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "action": {
        "default_icon": {
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "96": "icons\/icon-96.png",
            "128": "icons\/icon-128.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/scrollbars.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/addons.wesleybranton.com\/addon\/custom-scrollbars\/*",
                "*:\/\/customscrollbars.com\/*"
            ],
            "js": [
                "crossbrowser.js",
                "webservice\/unsubscribeFromNotifications.js",
                "webservice\/openOptions.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/components\/light\/*.svg",
                "images\/components\/dark\/*.svg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "host_permissions": [
        ""
    ]
}