Window Dimensions

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

Co to jest Window Dimensions?

Window Dimensions to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension will display the window's dimensions after resizing the browser window.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Window Dimensions

Pobierz pliki rozszerzeń Window Dimensions 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

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

Podstawowe informacje o rozszerzeniu

Nazwa Window Dimensions Window Dimensions
ID fdegbhikbooibcahgagmcbkdecmelgfo
Oficjalny URL https://chromewebstore.google.com/detail/window-dimensions/fdegbhikbooibcahgagmcbkdecmelgfo
Opis This extension will display the window's dimensions after resizing the browser window.
Rozmiar pliku 52.19 KB
Liczba instalacji 979
Aktualna Wersja 0.0.7
Ostatnia Aktualizacja 2016-04-18
Data Publikacji 2016-04-18
Ocena 2.45/5 Łącznie 11 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
}