Copy Selected Links
Right-click selected text to copy the URL of any links it contains.
什么是Copy Selected Links?
Copy Selected Links是由Marnes开发的Chrome扩展程序,该扩展的主要功能是“Right-click selected text to copy the URL of any links it contains.”。
扩展截图
下载Copy Selected Links扩展crx文件
下载Copy Selected Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
**This extension won't be maintained further.** I'm shelving this project due to lack of interest/utility and too much burden. The addon will remain available for download as long as the store allows, and the source on gitlab (https://gitlab.com/Marnes-group/webextensions) will also remain available to fork.
**I do have a greasyfork account (https://greasyfork.org/en/users/18593-marnes) and may publish works there in the future.** I have mild intentions to reimplement the core functionality of CSL, IBCP, and DID as public userscripts.
Also available for Firefox: https://addons.mozilla.org/en-US/firefox/addon/copy-selected-links/
When you select text in a page and your selection contains links, you can right-click anywhere on the selection or use a hotkey to copy the URLs of all those links at once.
Please check the linked homepage for more complete information. Issues can be filed on the linked support site. 扩展基本信息
| 名称 | |
| ID | kddpiojgkjnpmgiegglncafdpnigcbij |
| 官方URL | https://chromewebstore.google.com/detail/copy-selected-links/kddpiojgkjnpmgiegglncafdpnigcbij |
| 简介 | Right-click selected text to copy the URL of any links it contains. |
| 文件大小 | 126 KB |
| 安装次数 | 26,326 |
| 当前版本 | 2.4.1 |
| 更新时间 | 2023-06-26 |
| 上架时间 | 2020-01-30 |
| 评分 | 3.96/5 共51次评分 |
| 开发者 | Marnes |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://addons.mozilla.org/en-US/firefox/addon/copy-selected-links/ |
| 帮助页面URL | https://gitlab.com/Marnes/copy-selected-links/issues |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "jid1-vs5odTmtIydjMg@jetpack"
}
},
"name": "Copy Selected Links",
"short_name": "CSL",
"version": "2.4.1",
"description": "Right-click selected text to copy the URL of any links it contains.",
"author": "[email protected]",
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"notifications",
"contextMenus",
"storage",
"activeTab"
],
"commands": {
"copy-selected-links": {
"suggested_key": {
"default": "Alt+Shift+C"
},
"description": "Copy the currently selected links."
}
}
} | |