Open Links in New Tab

Ensures all links open in a new tab.

Vad är Open Links in New Tab?

Open Links in New Tab är en Chrome-tillägg utvecklad av sassnathan, och dess huvudfunktion är "Ensures all links open in a new tab.".

Tilläggsskärmbilder

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

                        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.                    

Grundläggande Information om Tillägg

Namn Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
Officiell webbadress https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Beskrivning Ensures all links open in a new tab.
Filstorlek 5.34 KB
Antal Installationer 107
Aktuell Version 1.0
Senast Uppdaterad 2023-08-29
Publiceringsdatum 2023-08-28
Betyg 2.33/5 Totalt 3 Betyg
Utvecklare sassnathan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Stödda Språk 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"
    }
}