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」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| ID | igpchmaapelclmhofnheepclmfniobnc |
| 公式URL | 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 |
| Eメール | [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"
} | |