Stylite

Quickly customize styling on any website

什么是Stylite?

Stylite是由Zenture开发的Chrome扩展程序,该扩展的主要功能是“Quickly customize styling on any website”。

扩展截图

screenshot

下载Stylite扩展crx文件

下载Stylite扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        A super lightweight style editor. Apply any styles you want to any site.

* Click the paint palette icon to bring up the style editor for the current site
* Click outside the editor to save
  * You can also press cmd+enter to save at any time

This extension is free and open source! Check it out: https://github.com/iansinnott/stylite                    

扩展基本信息

名称 Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
官方URL https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
简介 Quickly customize styling on any website
文件大小 510 KB
安装次数 98
当前版本 0.3.0
更新时间 2019-03-08
上架时间 2019-03-08
开发者 Zenture
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/iansinnott/stylite
帮助页面URL https://github.com/iansinnott/stylite/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stylite",
    "description": "Quickly customize styling on any website",
    "version": "0.3.0",
    "icons": {
        "128": "icon128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon19x19.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "",
        "storage",
        "unlimitedStorage"
    ]
}