Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
Cos'è Copy HTML Link?
Copy HTML Link è un'estensione di Chrome sviluppata da Paul Irish, e la sua funzione principale è "Copy link to the current page (with page title) to the clipboard.".
Scarica il file CRX dell'estensione Copy HTML Link
Scarica i file di estensione Copy HTML Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
URL Ufficiale | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
Descrizione | Copy link to the current page (with page title) to the clipboard. |
Dimensione del File | 17.37 KB |
Conteggio Installazioni | 315 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2016-11-05 |
Data di Pubblicazione | 2016-11-05 |
Valutazione | 4.75/5 Totale 4 Valutazioni |
Sviluppatore | Paul Irish |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/paulirish/CopyLink-extension |
URL della Pagina di Aiuto | https://github.com/paulirish/CopyLink-extension/issues |
Lingue Supportate | 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)" } } } |