Stylite

Quickly customize styling on any website

O que é Stylite?

Stylite é uma extensão do Chrome desenvolvida por Zenture, e sua principal característica é "Quickly customize styling on any website".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Stylite

Baixe arquivos de extensão Stylite no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
URL Oficial https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
Descrição Quickly customize styling on any website
Tamanho do Arquivo 510 KB
Contagem de Instalações 98
Versão Atual 0.3.0
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Desenvolvedor Zenture
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/iansinnott/stylite
URL da Página de Ajuda https://github.com/iansinnott/stylite/issues
Idiomas Suportados 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"
    ]
}