Open Links in New Tab

This extension allows you to decide which websites you want to automatically open in a new tab.

Qu'est-ce que Open Links in New Tab ?

Open Links in New Tab est une extension Chrome développée par Aran Sandhu, et sa fonction principale est "This extension allows you to decide which websites you want to automatically open in a new tab.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Open Links in New Tab

Téléchargez les fichiers d'extension Open Links 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

                        This extension will allow you to create a list of websites so that whenever you click a link on one of those websites, the link will automatically open in a new tab. Perfect for websites like Google, Reddit, and YouTube.                    

Informations de Base sur l'Extension

Nom Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
URL Officiel https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
Description This extension allows you to decide which websites you want to automatically open in a new tab.
Taille du Fichier 111 KB
Nombre d'Installations 1,000
Version Actuelle 1.05
Dernière Mise à Jour 2020-08-18
Date de Publication 2018-08-07
Évaluation 2.11/5 Total 9 Évaluations
Développeur Aran Sandhu
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Open Links in New Tab",
    "description": "This extension allows you to decide which websites you want to automatically open in a new tab.",
    "version": "1.05",
    "author": "Aran Sandhu",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "jquery-3.3.1.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "jquery-3.3.1.js",
                "util.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}