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
Eメール [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"
    ]
}