Open Links in New Tab

Ensures all links open in a new tab.

Co to jest Open Links in New Tab?

Open Links in New Tab to rozszerzenie Chrome opracowane przez sassnathan, a jego główną funkcją jest „Ensures all links open in a new tab.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Open Links in New Tab

Pobierz pliki rozszerzeń Open Links in New Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Open Links in New Tab Open Links in New Tab
ID facnjbdmmbddmojfmpfknnkihjcikgon
Oficjalny URL https://chromewebstore.google.com/detail/open-links-in-new-tab/facnjbdmmbddmojfmpfknnkihjcikgon
Opis Ensures all links open in a new tab.
Rozmiar pliku 5.34 KB
Liczba instalacji 107
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-08-29
Data Publikacji 2023-08-28
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper sassnathan
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Nathan-S19/OpenLinksInNewTab-extension
Obsługiwane Języki 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"
    }
}