Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
O que é Copy HTML Link?
Copy HTML Link é uma extensão do Chrome desenvolvida por Paul Irish, e sua principal característica é "Copy link to the current page (with page title) to the clipboard.".
Baixar o arquivo CRX da Extensão Copy HTML Link
Baixe arquivos de extensão Copy HTML Link no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
URL Oficial | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
Descrição | Copy link to the current page (with page title) to the clipboard. |
Tamanho do Arquivo | 17.37 KB |
Contagem de Instalações | 315 |
Versão Atual | 1.2 |
Última Atualização | 2016-11-05 |
Data de Publicação | 2016-11-05 |
Classificação | 4.75/5 Total de 4 Avaliações |
Desenvolvedor | Paul Irish |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/paulirish/CopyLink-extension |
URL da Página de Ajuda | https://github.com/paulirish/CopyLink-extension/issues |
Idiomas Suportados | 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)" } } } |