CSS Style Finder

Finds elements matching a given CSS selector on the pages you visit.

Qu'est-ce que CSS Style Finder ?

CSS Style Finder est une extension Chrome développée par Thomas Grinderslev, et sa fonction principale est "Finds elements matching a given CSS selector on the pages you visit.".

Télécharger le fichier CRX de l'extension CSS Style Finder

Téléchargez les fichiers d'extension CSS Style Finder 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

                                            

Informations de Base sur l'Extension

Nom CSS Style Finder CSS Style Finder
ID ecfecohpfmmmbmabcenekcebdckjfdpo
URL Officiel https://chromewebstore.google.com/detail/css-style-finder/ecfecohpfmmmbmabcenekcebdckjfdpo
Description Finds elements matching a given CSS selector on the pages you visit.
Taille du Fichier 21.49 KB
Nombre d'Installations 72
Version Actuelle 0.2
Dernière Mise à Jour 2015-01-08
Date de Publication 2015-01-08
Développeur Thomas Grinderslev
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CSS Style Finder",
    "version": "0.2",
    "description": "Finds elements matching a given CSS selector on the pages you visit.",
    "browser_action": {
        "default_icon": {
            "19": "19.png",
            "38": "38.png",
            "128": "128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "19": "19.png",
        "38": "38.png",
        "128": "128.png"
    },
    "permissions": [
        "notifications"
    ],
    "web_accessible_resources": [
        "128.png",
        "128-active.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ]
}