Link Control
Manage whether links are opened in the same tab or a new tab
Qu'est-ce que Link Control ?
Link Control est une extension Chrome développée par yikeware, et sa fonction principale est "Manage whether links are opened in the same tab or a new tab".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Link Control
Téléchargez les fichiers d'extension Link Control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Link Control |
ID | olcpmlhnomiabbndnfplobojnhjljapm |
URL Officiel | https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm |
Description | Manage whether links are opened in the same tab or a new tab |
Taille du Fichier | 12.23 KB |
Nombre d'Installations | 1,015 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-12-21 |
Date de Publication | 2020-08-04 |
Évaluation | 4.21/5 Total 14 Évaluations |
Développeur | yikeware |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |