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…

Vad är Chrome_MultiMonitor?

Chrome_MultiMonitor är en Chrome-tillägg utvecklad av emdsys, och dess huvudfunktion är "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…".

Tilläggsskärmbilder

screenshot

Ladda ner Chrome_MultiMonitor-förlängningens CRX-fil

Ladda ner Chrome_MultiMonitor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Chrome_MultiMonitor Chrome_MultiMonitor
ID mlkplhocljobcbmokjlehlminmnfaddn
Officiell webbadress https://chromewebstore.google.com/detail/chromemultimonitor/mlkplhocljobcbmokjlehlminmnfaddn
Beskrivning 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…
Filstorlek 17.28 KB
Antal Installationer 11,449
Aktuell Version 1.4.6
Senast Uppdaterad 2019-02-26
Publiceringsdatum 2019-02-26
Betyg 4.20/5 Totalt 5 Betyg
Utvecklare emdsys
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}