CSS Style Finder

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

Co to jest CSS Style Finder?

CSS Style Finder to rozszerzenie Chrome opracowane przez Thomas Grinderslev, a jego główną funkcją jest „Finds elements matching a given CSS selector on the pages you visit.”.

Pobierz plik CRX rozszerzenia CSS Style Finder

Pobierz pliki rozszerzeń CSS Style Finder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                                            

Podstawowe informacje o rozszerzeniu

Nazwa CSS Style Finder CSS Style Finder
ID ecfecohpfmmmbmabcenekcebdckjfdpo
Oficjalny URL https://chromewebstore.google.com/detail/css-style-finder/ecfecohpfmmmbmabcenekcebdckjfdpo
Opis Finds elements matching a given CSS selector on the pages you visit.
Rozmiar pliku 21.49 KB
Liczba instalacji 72
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2015-01-08
Data Publikacji 2015-01-08
Deweloper Thomas Grinderslev
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}