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
公式URL 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
Eメール [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": [
        ""
    ]
}