Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

Co je Open in new tab?

Open in new tab je rozšíření Chrome vyvinuté Ramkumar K R, a jeho hlavní funkcí je „Open links in new tab for a list of specified domains. Useful for sites such as hackernews“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Open in new tab

Stáhněte si soubory rozšíření Open in new tab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Have websites which you always open links in new tab?
With this extension, add the domain and all links in the domain will open in a new tab.

Useful for websites such as hackernews where you would ideally like to open links in new tab.

To add a website to always open in a new tab, just visit the website and click on the extension icon.                    

Základní Informace o Rozšíření

Název Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
Oficiální URL https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
Popis Open links in new tab for a list of specified domains. Useful for sites such as hackernews
Velikost souboru 101 KB
Počet instalací 8,400
Aktuální Verze 0.0.15
Poslední Aktualizace 2020-05-21
Datum Vydání 2020-05-21
Hodnocení 3.56/5 Celkem 54 Hodnocení
Vývojář Ramkumar K R
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open in new tab",
    "version": "0.0.15",
    "author": "Ramkumar K R",
    "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
    "permissions": [
        "storage",
        ""
    ],
    "browser_action": {
        "browser_style": false,
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabify.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "icons": {
        "52": "icon.png"
    }
}