Stylite

Quickly customize styling on any website

Cos'è Stylite?

Stylite è un'estensione di Chrome sviluppata da Zenture, e la sua funzione principale è "Quickly customize styling on any website".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Stylite

Scarica i file di estensione Stylite in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
URL Ufficiale https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
Descrizione Quickly customize styling on any website
Dimensione del File 510 KB
Conteggio Installazioni 98
Versione Corrente 0.3.0
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Sviluppatore Zenture
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/iansinnott/stylite
URL della Pagina di Aiuto https://github.com/iansinnott/stylite/issues
Lingue Supportate 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"
    ]
}