Chrome_MultiMonitor

This extension will help you to position a tab on another monitor from a web page. Actually chrome will not let you to do that from…

Что такое Chrome_MultiMonitor?

Chrome_MultiMonitor - это расширение Chrome, разработанное emdsys, и его основная функция - "This extension will help you to position a tab on another monitor from a web page. Actually chrome will not let you to do that from…".

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

screenshot

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

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

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

                        This extension will help you to position a tab on another monitor from a web page. Actually chrome will not let you to do that from a web page, you have to manually do that. So this extension will come to your aid on that.

Also you can not do that by only just installing this extension. You need some changes in your web application to do that.

*Note: This extension will not work for all.                    

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

Название Chrome_MultiMonitor Chrome_MultiMonitor
ID mlkplhocljobcbmokjlehlminmnfaddn
Официальный URL https://chromewebstore.google.com/detail/chromemultimonitor/mlkplhocljobcbmokjlehlminmnfaddn
Описание This extension will help you to position a tab on another monitor from a web page. Actually chrome will not let you to do that from…
Размер файла 17.28 KB
Количество установок 11,449
Текущая Версия 1.4.6
Последнее Обновление 2019-02-26
Дата публикации 2019-02-26
Рейтинг 4.20/5 Всего 5 оценок
Разработчик emdsys
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome_MultiMonitor",
    "version": "1.4.6",
    "minimum_chrome_version": "23",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "system.display"
    ],
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "favicon_16.ico"
    ]
}