Stylized Scrollbar

Stylize your scroll bar from a handful of presets

什麼是Stylized Scrollbar?

Stylized Scrollbar是由Andrew Li開發的Chrome擴展程式,該擴展的主要功能是“Stylize your scroll bar from a handful of presets”。

擴展截圖

screenshot
screenshot

下載Stylized Scrollbar擴展crx文件

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

擴展使用說明

                        An extension that customizes your scroll bar to either a black or white one. Works on all websites and can be changed on the fly into black or white. Check out the style of the scroll bar above                    

擴展基本資訊

名稱 Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
官方網址 https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
簡介 Stylize your scroll bar from a handful of presets
檔案大小 449 KB
安裝次數 57
目前版本 0.1.0
更新時間 2021-01-23
上架時間 2021-01-22
開發者 Andrew Li
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/Zeyu-Li/scroll_with_style
說明頁面URL https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stylized Scrollbar",
    "author": "Andrew Li",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Stylize your scroll bar from a handful of presets",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Custom Scrollbar"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_page": "popup.html"
}