Link Control

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

Co je Link Control?

Link Control je rozšíření Chrome vyvinuté yikeware, a jeho hlavní funkcí je „Manage whether links are opened in the same tab or a new tab“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Link Control

Stáhněte si soubory rozšíření Link Control 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í

                        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.                    

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

Název Link Control Link Control
ID olcpmlhnomiabbndnfplobojnhjljapm
Oficiální URL https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm
Popis Manage whether links are opened in the same tab or a new tab
Velikost souboru 12.23 KB
Počet instalací 1,015
Aktuální Verze 1.1
Poslední Aktualizace 2023-12-21
Datum Vydání 2020-08-04
Hodnocení 4.21/5 Celkem 14 Hodnocení
Vývojář yikeware
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}