Stylo
Allows you to apply and persist custom CSS to any web page.
什么是Stylo?
Stylo是由Andrew Hook开发的Chrome扩展程序,该扩展的主要功能是“Allows you to apply and persist custom CSS to any web page.”。
扩展截图
下载Stylo扩展crx文件
下载Stylo扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows you to apply and persist custom CSS to any web page. 扩展基本信息
| 名称 | |
| ID | fpoplbeolegkjepcmgakknapmpdpcimb |
| 官方URL | https://chromewebstore.google.com/detail/stylo/fpoplbeolegkjepcmgakknapmpdpcimb |
| 简介 | Allows you to apply and persist custom CSS to any web page. |
| 文件大小 | 15.49 KB |
| 安装次数 | 20 |
| 当前版本 | 2.0 |
| 更新时间 | 2019-05-10 |
| 上架时间 | 2019-05-10 |
| 开发者 | Andrew Hook |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Stylo",
"version": "2.0",
"description": "Allows you to apply and persist custom CSS to any web page.",
"manifest_version": 2,
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png"
}
},
"icons": {
"16": "images\/icon16.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"css": [
"gmail.css"
]
}
],
"content_security_policy": "script-src 'self' https:\/\/mail.google.com\/*; object-src 'self'"
} | |