Disable links.
Hold Ctrl+Alt to disable the links temporarily.
什麼是Disable links.?
Disable links.是由alienav開發的Chrome擴展程式,該擴展的主要功能是“Hold Ctrl+Alt to disable the links temporarily.”。
擴展截圖
下載Disable links.擴展crx文件
下載Disable links.擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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:\/\/*\/*" ] } |