Open Links in New Tab

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

Was ist Open Links in New Tab?

Open Links in New Tab ist eine Chrome-Erweiterung, die von Aran Sandhu entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to decide which websites you want to automatically open in a new tab.".

Erweiterungsscreenshots

screenshot
screenshot

Open Links in New Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Open Links in New Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
Offizielle URL https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
Beschreibung This extension allows you to decide which websites you want to automatically open in a new tab.
Dateigröße 111 KB
Installationsanzahl 1,000
Aktuelle Version 1.05
Letztes Update 2020-08-18
Veröffentlichungsdatum 2018-08-07
Bewertung 2.11/5 Insgesamt 9 Bewertungen
Entwickler Aran Sandhu
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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",
        "*:\/\/*\/*"
    ]
}