Window Dimensions

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

Что такое Window Dimensions?

Window Dimensions - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension will display the window's dimensions after resizing the browser window.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Window Dimensions

Скачайте файлы расширений Window Dimensions в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Window Dimensions Window Dimensions
ID fdegbhikbooibcahgagmcbkdecmelgfo
Официальный URL https://chromewebstore.google.com/detail/window-dimensions/fdegbhikbooibcahgagmcbkdecmelgfo
Описание This extension will display the window's dimensions after resizing the browser window.
Размер файла 52.19 KB
Количество установок 979
Текущая Версия 0.0.7
Последнее Обновление 2016-04-18
Дата публикации 2016-04-18
Рейтинг 2.45/5 Всего 11 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки 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"
}