Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
Wat is Copy HTML Link?
Copy HTML Link is een Chrome-extensie ontwikkeld door Paul Irish, en de belangrijkste functie is "Copy link to the current page (with page title) to the clipboard.".
Download het CRX-bestand van de extensie Copy HTML Link
Download Copy HTML Link-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
Officiële URL | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
Beschrijving | Copy link to the current page (with page title) to the clipboard. |
Bestandsgrootte | 17.37 KB |
Aantal Installaties | 315 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2016-11-05 |
Publicatiedatum | 2016-11-05 |
Beoordeling | 4.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Paul Irish |
Betalingswijze | free |
Extensiewebsite | https://github.com/paulirish/CopyLink-extension |
Help Pagina-URL | https://github.com/paulirish/CopyLink-extension/issues |
Ondersteunde Talen | 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)" } } } |