Link Control

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

Cos'è Link Control?

Link Control è un'estensione di Chrome sviluppata da yikeware, e la sua funzione principale è "Manage whether links are opened in the same tab or a new tab".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Link Control

Scarica i file di estensione Link Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Link Control Link Control
ID olcpmlhnomiabbndnfplobojnhjljapm
URL Ufficiale https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm
Descrizione Manage whether links are opened in the same tab or a new tab
Dimensione del File 12.23 KB
Conteggio Installazioni 1,015
Versione Corrente 1.1
Ultimo Aggiornamento 2023-12-21
Data di Pubblicazione 2020-08-04
Valutazione 4.21/5 Totale 14 Valutazioni
Sviluppatore yikeware
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}