Open Links in New Tab

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

Vad är Open Links in New Tab?

Open Links in New Tab är en Chrome-tillägg utvecklad av Aran Sandhu, och dess huvudfunktion är "This extension allows you to decide which websites you want to automatically open in a new tab.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Open Links in New Tab-förlängningens CRX-fil

Ladda ner Open Links in New Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Open Links in New Tab Open Links in New Tab
ID bbccifaebcaangidpmojlooininapefb
Officiell webbadress https://chrome.google.com/webstore/detail/open-links-in-new-tab/bbccifaebcaangidpmojlooininapefb
Beskrivning This extension allows you to decide which websites you want to automatically open in a new tab.
Filstorlek 111 KB
Antal Installationer 1,000
Aktuell Version 1.05
Senast Uppdaterad 2020-08-18
Publiceringsdatum 2018-08-07
Betyg 2.11/5 Totalt 9 Betyg
Utvecklare Aran Sandhu
E-post [email protected]
Betalningssätt free
Stödda Språk 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",
        "*:\/\/*\/*"
    ]
}