chrome-usercss-hogashi
usercss for each site
什么是chrome-usercss-hogashi?
chrome-usercss-hogashi是由hogashi开发的Chrome扩展程序,该扩展的主要功能是“usercss for each site”。
扩展截图
下载chrome-usercss-hogashi扩展crx文件
下载chrome-usercss-hogashi扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
UserCSS をサイトごとに挿入する拡張機能です。サイトは hostname ごとに区別され、それぞれのサイトにそれぞれの UserCSS を設定できます。
利用に責任を負いません。他人から渡された信用できないコードは入力しないでください。 扩展基本信息
| 名称 | |
| ID | bddeakjniijkggfocbdngafgdjkljkje |
| 官方URL | https://chromewebstore.google.com/detail/chrome-usercss-hogashi/bddeakjniijkggfocbdngafgdjkljkje |
| 简介 | usercss for each site |
| 文件大小 | 1.67 MB |
| 安装次数 | 19 |
| 当前版本 | 0.4.1 |
| 更新时间 | 2022-01-16 |
| 上架时间 | 2020-12-26 |
| 开发者 | hogashi |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://hogashi.hatenablog.com |
| 隐私政策页面URL | https://github.com/hogashi/twitterOpenOriginalImage/blob/master/privacy-policy.md |
| 支持的语言 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "chrome-usercss-hogashi",
"version": "0.4.1",
"description": "usercss for each site",
"author": "hogashi",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"index.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "chrome-usercss-hogashi",
"default_popup": "popup.html"
},
"options_page": "popup.html"
} | |