CSS Style Finder

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

What is CSS Style Finder?

CSS Style Finder is a Chrome extension developed by Thomas Grinderslev, and its main feature is "Finds elements matching a given CSS selector on the pages you visit.".

Download CSS Style Finder Extension CRX File

Download CSS Style Finder 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

                                            

Extension Basic Information

Name CSS Style Finder CSS Style Finder
ID ecfecohpfmmmbmabcenekcebdckjfdpo
Official URL https://chromewebstore.google.com/detail/css-style-finder/ecfecohpfmmmbmabcenekcebdckjfdpo
Description Finds elements matching a given CSS selector on the pages you visit.
File Size 21.49 KB
Installation Count 72
Current Version 0.2
Last Updated 2015-01-08
Publish Date 2015-01-08
Developer Thomas Grinderslev
Payment Type free
Supported Languages 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"
        }
    ]
}