Open in new tab

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

Qu'est-ce que Open in new tab ?

Open in new tab est une extension Chrome développée par Ramkumar K R, et sa fonction principale est "Open links in new tab for a list of specified domains. Useful for sites such as hackernews".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Open in new tab

Téléchargez les fichiers d'extension Open in new tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Open in new tab Open in new tab
ID cplillmhmcegjlhcbedmgmalbgjpmlkh
URL Officiel https://chromewebstore.google.com/detail/open-in-new-tab/cplillmhmcegjlhcbedmgmalbgjpmlkh
Description Open links in new tab for a list of specified domains. Useful for sites such as hackernews
Taille du Fichier 101 KB
Nombre d'Installations 8,400
Version Actuelle 0.0.15
Dernière Mise à Jour 2020-05-21
Date de Publication 2020-05-21
Évaluation 3.56/5 Total 54 Évaluations
Développeur Ramkumar K R
Type de Paiement free
Langues Prises en Charge 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"
    }
}