Inspect CSS
The easiest way to inspect and edit CSS
什么是Inspect CSS?
Inspect CSS是由kholid060开发的Chrome扩展程序,该扩展的主要功能是“The easiest way to inspect and edit CSS”。
扩展截图
下载Inspect CSS扩展crx文件
下载Inspect CSS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Features:
🔎 Get CSS Properties from any element by selecting it
✏️ Get and edit element attributes
📷 Download website assets
⌨️ Add your custom CSS to the website
🎨 Get the color palette of the website
🧭 DOM Navigation
🎯 Color picker
GitHub:
https://github.com/Kholid060/inspect-css 扩展基本信息
| 名称 | |
| ID | fbopfffegfehobgoommphghohinpkego |
| 官方URL | https://chromewebstore.google.com/detail/inspect-css/fbopfffegfehobgoommphghohinpkego |
| 简介 | The easiest way to inspect and edit CSS |
| 文件大小 | 380 KB |
| 安装次数 | 5,344 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2024-02-09 |
| 上架时间 | 2020-09-15 |
| 评分 | 4.20/5 共10次评分 |
| 开发者 | kholid060 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Kholid060/inspect-css |
| 帮助页面URL | https://github.com/Kholid060/inspect-css/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extensionName__",
"version": "1.0.2",
"description": "__MSG_extensionDescription__",
"permissions": [
"activeTab",
"scripting",
"storage"
],
"action": [],
"background": {
"service_worker": "src\/pages\/background\/index.js",
"type": "module"
},
"icons": {
"128": "icon-128.png"
},
"web_accessible_resources": [
{
"resources": [
"assets\/js\/*.js",
"assets\/woff2\/*.woff2",
"assets\/css\/*.css",
"icon-128.png",
"icon-34.png"
],
"matches": [
"*:\/\/*\/*"
]
}
]
} | |