Link Control
Manage whether links are opened in the same tab or a new tab
Link Control क्या है?
Link Control yikeware द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage whether links are opened in the same tab or a new tab"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Link Control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Link Control |
ID | olcpmlhnomiabbndnfplobojnhjljapm |
आधिकारिक URL | https://chromewebstore.google.com/detail/link-control/olcpmlhnomiabbndnfplobojnhjljapm |
विवरण | Manage whether links are opened in the same tab or a new tab |
फ़ाइल का आकार | 12.23 KB |
स्थापना संख्या | 1,015 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2023-12-21 |
प्रकाशन तिथि | 2020-08-04 |
रेटिंग | 4.21/5 कुल 14 रेटिंग्स |
डेवलपर | yikeware |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |