Get Style

see css attributes instantly by mousing over

Co to jest Get Style?

Get Style to rozszerzenie Chrome opracowane przez danyalette, a jego główną funkcją jest „see css attributes instantly by mousing over”.

Pobierz plik CRX rozszerzenia Get Style

Pobierz pliki rozszerzeń Get Style 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

                        view CSS properties on the fly, by mousing over                    

Podstawowe informacje o rozszerzeniu

Nazwa Get Style Get Style
ID coidiadldgffddljfiafnabogkhadecg
Oficjalny URL https://chrome.google.com/webstore/detail/get-style/coidiadldgffddljfiafnabogkhadecg
Opis see css attributes instantly by mousing over
Rozmiar pliku 28.73 KB
Liczba instalacji 227
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-08-29
Data Publikacji 2014-08-29
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper danyalette
Typ Płatności free
Strona Rozszerzenia http://danyalette.com
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Get Style",
    "description": "see css attributes instantly by mousing over",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "mystyles.css"
            ],
            "script": [
                "getStyle.js",
                "getStyleChecker.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "get style",
        "default_icon": "icon-32.png"
    },
    "web_accessible_resources": [
        "icon-64.png"
    ],
    "manifest_version": 2
}