Window Dimensions

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

O que é Window Dimensions?

Window Dimensions é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension will display the window's dimensions after resizing the browser window.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Window Dimensions

Baixe arquivos de extensão Window Dimensions no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Window Dimensions Window Dimensions
ID fdegbhikbooibcahgagmcbkdecmelgfo
URL Oficial https://chromewebstore.google.com/detail/window-dimensions/fdegbhikbooibcahgagmcbkdecmelgfo
Descrição This extension will display the window's dimensions after resizing the browser window.
Tamanho do Arquivo 52.19 KB
Contagem de Instalações 979
Versão Atual 0.0.7
Última Atualização 2016-04-18
Data de Publicação 2016-04-18
Classificação 2.45/5 Total de 11 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
}