Stylite

Quickly customize styling on any website

Qu'est-ce que Stylite ?

Stylite est une extension Chrome développée par Zenture, et sa fonction principale est "Quickly customize styling on any website".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Stylite

Téléchargez les fichiers d'extension Stylite au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Stylite Stylite
ID alghcdmjanomnafjjmmhegabkilpbaea
URL Officiel https://chromewebstore.google.com/detail/stylite/alghcdmjanomnafjjmmhegabkilpbaea
Description Quickly customize styling on any website
Taille du Fichier 510 KB
Nombre d'Installations 98
Version Actuelle 0.3.0
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Développeur Zenture
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/iansinnott/stylite
URL de la Page d'Aide https://github.com/iansinnott/stylite/issues
Langues Prises en Charge 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"
    ]
}