Link Control

Manage whether links are opened in the same tab or a new tab

Was ist Link Control?

Link Control ist eine Chrome-Erweiterung, die von yikeware entwickelt wurde, und ihr Hauptmerkmal ist "Manage whether links are opened in the same tab or a new tab".

Erweiterungsscreenshots

screenshot

Link Control-Erweiterungs-CRX-Datei herunterladen

Laden Sie Link Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A lightweight extension that puts you in control of how links open.

The extension lets you:

- Always open links in the same tab
- Always open links in a new tab
- Choose the behaviour for specific websites

Useful for stopping the behaviour of sites such as eBay, Etsy, Temu and others that open a new tab every time you click on a link, or it can be used to add that behaviour for other sites.                    

Grundlegende Informationen zur Erweiterung

Name Link Control Link Control
ID olcpmlhnomiabbndnfplobojnhjljapm
Offizielle URL https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm
Beschreibung Manage whether links are opened in the same tab or a new tab
Dateigröße 12.23 KB
Installationsanzahl 1,015
Aktuelle Version 1.1
Letztes Update 2023-12-21
Veröffentlichungsdatum 2020-08-04
Bewertung 4.21/5 Insgesamt 14 Bewertungen
Entwickler yikeware
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Link Control",
    "description": "Manage whether links are opened in the same tab or a new tab",
    "version": "1.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": "linkcontrol16.png",
        "show_matches": "*:\/\/*\/*"
    },
    "icons": {
        "16": "linkcontrol16.png",
        "48": "linkcontrol48.png",
        "128": "linkcontrol128.png"
    }
}