Copy link

Copies a formatted link to the current tab onto the clipboard.

O que é Copy link?

Copy link é uma extensão do Chrome desenvolvida por Tim Dierks, e sua principal característica é "Copies a formatted link to the current tab onto the clipboard.".

Baixar o arquivo CRX da Extensão Copy link

Baixe arquivos de extensão Copy 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

                        When you click this extension's icon, it will copy the current tab's URL to the clipboard, formatted so it can be pasted into a document or email message as a link, with the tab's title as the text of the link and the tab's URL as the target of the link. It also supports copying the tab's title and link as a Markdown-formatted string suitable for pasting into Markdown documents.                    

Informações Básicas da Extensão

Nome Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
URL Oficial https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
Descrição Copies a formatted link to the current tab onto the clipboard.
Tamanho do Arquivo 17.71 KB
Contagem de Instalações 229
Versão Atual 1.0
Última Atualização 2017-01-28
Data de Publicação 2017-01-28
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor Tim Dierks
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tdierks/copy-url-ext
URL da Página de Ajuda https://github.com/tdierks/copy-url-ext/blob/master/README.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy link",
    "description": "Copies a formatted link to the current tab onto the clipboard.",
    "author": "Tim Dierks ",
    "version": "1.0",
    "homepage_url": "https:\/\/github.com\/tdierks\/copy-url-ext",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Copy formatted link"
    },
    "background": {
        "page": "copy-url.html",
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+C"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}