Window Dimensions

This extension will display the window's dimensions after resizing the browser window.

Co je Window Dimensions?

Window Dimensions je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension will display the window's dimensions after resizing the browser window.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Window Dimensions

Stáhněte si soubory rozšíření Window Dimensions ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This package allows you to view window size upon resizing the browser. Colors, font-size, and location can be changed in the options panel.                    

Základní Informace o Rozšíření

Název Window Dimensions Window Dimensions
ID fdegbhikbooibcahgagmcbkdecmelgfo
Oficiální URL https://chromewebstore.google.com/detail/window-dimensions/fdegbhikbooibcahgagmcbkdecmelgfo
Popis This extension will display the window's dimensions after resizing the browser window.
Velikost souboru 52.19 KB
Počet instalací 979
Aktuální Verze 0.0.7
Poslední Aktualizace 2016-04-18
Datum Vydání 2016-04-18
Hodnocení 2.45/5 Celkem 11 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "background": {
        "persistent": false,
        "scripts": [
            "js\/jquery-1.11.1.min.js",
            "js\/scripts.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/jquery-1.11.1.min.js",
                "js\/scripts.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "http:\/\/localhost\/*",
                "https:\/\/localhost\/*",
                "http:\/\/127.0.0.1\/*",
                "file:\/\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "This extension will display the window's dimensions after resizing the browser window.",
    "icons": {
        "128": "img\/icon128.png"
    },
    "manifest_version": 2,
    "name": "Window Dimensions",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.7"
}