Stylite

Quickly customize styling on any website

What is Stylite?

Stylite is a Chrome extension developed by Zenture, and its main feature is "Quickly customize styling on any website".

Extension Screenshots

screenshot

Download Stylite Extension CRX File

Download Stylite extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
Official URL https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
Description Quickly customize styling on any website
File Size 510 KB
Installation Count 98
Current Version 0.3.0
Last Updated 2019-03-08
Publish Date 2019-03-08
Developer Zenture
Email [email protected]
Payment Type free
Extension Website https://github.com/iansinnott/stylite
Help Page URL https://github.com/iansinnott/stylite/issues
Supported Languages 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"
    ]
}