Open Links in New Tab

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

Wat is Open Links in New Tab?

Open Links in New Tab is een Chrome-extensie ontwikkeld door Aran Sandhu, en de belangrijkste functie is "This extension allows you to decide which websites you want to automatically open in a new tab.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Open Links in New Tab

Download Open Links in New Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
Officiële URL https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
Beschrijving This extension allows you to decide which websites you want to automatically open in a new tab.
Bestandsgrootte 111 KB
Aantal Installaties 1,000
Huidige Versie 1.05
Laatst Bijgewerkt 2020-08-18
Publicatiedatum 2018-08-07
Beoordeling 2.11/5 Totaal 9 Beoordelingen
Ontwikkelaar Aran Sandhu
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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",
        "*:\/\/*\/*"
    ]
}