Dark Scrollbar
Adds color-scheme light dark meta tag to allow UI elements to match OS theme.
什么是Dark Scrollbar?
Dark Scrollbar是由Petroz Wellnai开发的Chrome扩展程序,该扩展的主要功能是“Adds color-scheme light dark meta tag to allow UI elements to match OS theme.”。
扩展截图
下载Dark Scrollbar扩展crx文件
下载Dark Scrollbar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Forces UI elements such as scrollbars and form fields to match either your operating system's theme, or your own theme by choice, light or dark.
扩展基本信息
名称 | Dark Scrollbar |
ID | eafmdhegblfeilejhmieheapmlpdeklm |
官方URL | https://chromewebstore.google.com/detail/dark-scrollbar/eafmdhegblfeilejhmieheapmlpdeklm |
简介 | Adds color-scheme light dark meta tag to allow UI elements to match OS theme. |
文件大小 | 11.33 KB |
安装次数 | 1,117 |
当前版本 | 1.1 |
更新时间 | 2022-05-21 |
上架时间 | 2021-01-04 |
评分 | 4.64/5 共14次评分 |
开发者 | Petroz Wellnai |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dark Scrollbar", "version": "1.1", "description": "Adds color-scheme light dark meta tag to allow UI elements to match OS theme.", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "16": "vertical-scrolling16.png", "32": "vertical-scrolling32.png", "48": "vertical-scrolling48.png", "128": "vertical-scrolling128.png" }, "manifest_version": 2 } |