Get Style

see css attributes instantly by mousing over

What is Get Style?

Get Style is a Chrome extension developed by danyalette, and its main feature is "see css attributes instantly by mousing over".

Download Get Style Extension CRX File

Download Get Style 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

                        view CSS properties on the fly, by mousing over                    

Extension Basic Information

Name Get Style Get Style
ID coidiadldgffddljfiafnabogkhadecg
Official URL https://chrome.google.com/webstore/detail/get-style/coidiadldgffddljfiafnabogkhadecg
Description see css attributes instantly by mousing over
File Size 28.73 KB
Installation Count 227
Current Version 1.0
Last Updated 2014-08-29
Publish Date 2014-08-29
Rating 5.00/5 Total 1 Ratings
Developer danyalette
Payment Type free
Extension Website http://danyalette.com
Supported Languages 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
}