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 |
官方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:\/\/*\/*" ] } |