Disable links.
Hold Ctrl+Alt to disable the links temporarily.
Disable links. क्या है?
Disable links. alienav द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hold Ctrl+Alt to disable the links temporarily."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Disable links. एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension is deprecated - Chrome has a built-in feature for this, just holding Alt while selecting prevents the link from being clicked. You can safely remove it. Previous description: This extension disables links when you hold Ctrl+Alt. This allows to select text from the middle of the link, and generally eases selection, eliminating the risk to click the link while copying it. “Broken link” icon by Arthur Abt, from thenounproject.com collection.
एक्सटेंशन की मूल जानकारी
नाम | Disable links. |
ID | kgghjfabpkpodeancnenkndklnomjpbf |
आधिकारिक URL | https://chromewebstore.google.com/detail/disable-links/kgghjfabpkpodeancnenkndklnomjpbf |
विवरण | Hold Ctrl+Alt to disable the links temporarily. |
फ़ाइल का आकार | 9.21 KB |
स्थापना संख्या | 1,254 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2022-06-18 |
प्रकाशन तिथि | 2014-07-14 |
रेटिंग | 3.36/5 कुल 33 रेटिंग्स |
डेवलपर | alienav |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Disable links.", "description": "Hold Ctrl+Alt to disable the links temporarily.", "version": "1.0", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "keyboardhook.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |