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
官方網址 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"
    ]
}