Link Control
Manage whether links are opened in the same tab or a new tab
Vad är Link Control?
Link Control är en Chrome-tillägg utvecklad av yikeware, och dess huvudfunktion är "Manage whether links are opened in the same tab or a new tab".
Tilläggsskärmbilder
Ladda ner Link Control-förlängningens CRX-fil
Ladda ner Link Control-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Link Control |
ID | olcpmlhnomiabbndnfplobojnhjljapm |
Officiell webbadress | https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm |
Beskrivning | Manage whether links are opened in the same tab or a new tab |
Filstorlek | 12.23 KB |
Antal Installationer | 1,015 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2023-12-21 |
Publiceringsdatum | 2020-08-04 |
Betyg | 4.21/5 Totalt 14 Betyg |
Utvecklare | yikeware |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |