CSS Injector
Inject custom css to specified web page
什么是CSS Injector?
CSS Injector是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Inject custom css to specified web page”。
扩展截图
下载CSS Injector扩展crx文件
下载CSS Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Inject custom css to specified web page 扩展基本信息
| 名称 | |
| ID | bonanlhbgkbmdbpgmljgpkcihiccfbha |
| 官方URL | https://chromewebstore.google.com/detail/css-injector/bonanlhbgkbmdbpgmljgpkcihiccfbha |
| 简介 | Inject custom css to specified web page |
| 文件大小 | 142 KB |
| 安装次数 | 28 |
| 当前版本 | 0.2 |
| 更新时间 | 2022-03-29 |
| 上架时间 | 2022-03-29 |
| 开发者 | Unknown |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/m-masataka/css-injector-extension |
| 支持的语言 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "CSS Injector",
"manifest_version": 3,
"version": "0.2",
"permissions": [
"activeTab",
"storage"
],
"options_page": "index.html",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "disabled.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
} | |