Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
What is Copy HTML Link?
Copy HTML Link is a Chrome extension developed by Paul Irish, and its main feature is "Copy link to the current page (with page title) to the clipboard.".
Download Copy HTML Link Extension CRX File
Download Copy HTML Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
Official URL | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
Description | Copy link to the current page (with page title) to the clipboard. |
File Size | 17.37 KB |
Installation Count | 315 |
Current Version | 1.2 |
Last Updated | 2016-11-05 |
Publish Date | 2016-11-05 |
Rating | 4.75/5 Total 4 Ratings |
Developer | Paul Irish |
Payment Type | free |
Extension Website | https://github.com/paulirish/CopyLink-extension |
Help Page URL | https://github.com/paulirish/CopyLink-extension/issues |
Supported Languages | 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)" } } } |