Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
什么是Copy HTML Link?
Copy HTML Link是由Paul Irish开发的Chrome扩展程序,该扩展的主要功能是“Copy link to the current page (with page title) to the clipboard.”。
下载Copy HTML Link扩展crx文件
下载Copy HTML Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Click once for HTML link and text fallback. Double-click to copy text as markdown. Also available via keyboard shortcut: * Alt+Shift+C on Windows / Linux * Ctrl+Shift+C on Mac (Protip: Tapping the C twice will "double-click") Source: https://github.com/paulirish/CopyLink-extension
扩展基本信息
名称 | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
官方URL | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
简介 | Copy link to the current page (with page title) to the clipboard. |
文件大小 | 17.37 KB |
安装次数 | 315 |
当前版本 | 1.2 |
更新时间 | 2016-11-05 |
上架时间 | 2016-11-05 |
评分 | 4.75/5 共4次评分 |
开发者 | Paul Irish |
付费类型 | free |
扩展官网 | https://github.com/paulirish/CopyLink-extension |
帮助页面URL | https://github.com/paulirish/CopyLink-extension/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icon64.png", "default_title": "Copy HTML Link" }, "description": "Copy link to the current page (with page title) to the clipboard.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "64": "icon64.png" }, "name": "Copy HTML Link", "permissions": [ "activeTab", "clipboardWrite", "contextMenus" ], "version": "1.2", "commands": { "copy-html-link": { "suggested_key": { "default": "Alt+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Copy link of the page (with title)" } } } |