Open Links in New Tab

Ensures all links open in a new tab.

Co je Open Links in New Tab?

Open Links in New Tab je rozšíření Chrome vyvinuté sassnathan, a jeho hlavní funkcí je „Ensures all links open in a new tab.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Open Links in New Tab

Stáhněte si soubory rozšíření Open Links in New Tab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Why Use Open Links in New Tab?

Navigating the web can involve clicking through a myriad of links. Open Links in New Tab simplifies your browsing experience by automatically opening all links in new tabs. No more right-clicking or using keyboard shortcuts; let this extension do the work for you!

Features:

🌐 Universal Compatibility: Works on all websites.
🛠️ Simple Interface: Just one checkbox to enable or disable the feature.
🟢 Status Indicator: A badge on the extension icon shows whether the feature is currently ON or OFF.
How to Use:

Install the Extension: Add it to Chrome from the Chrome Web Store.
Click the Icon: Find the extension icon in your toolbar and click it.
Enable or Disable: Use the popup checkbox to turn the feature ON or OFF.                    

Základní Informace o Rozšíření

Název Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
Oficiální URL https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Popis Ensures all links open in a new tab.
Velikost souboru 5.34 KB
Počet instalací 107
Aktuální Verze 1.0
Poslední Aktualizace 2023-08-29
Datum Vydání 2023-08-28
Hodnocení 2.33/5 Celkem 3 Hodnocení
Vývojář sassnathan
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Open Links in New Tab",
    "version": "1.0",
    "description": "Ensures all links open in a new tab.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}