Copy link

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

¿Qué es Copy link?

Copy link es una extensión de Chrome desarrollada por Tim Dierks, y su función principal es "Copies a formatted link to the current tab onto the clipboard.".

Descargar Archivo CRX de la Extensión Copy link

Descarga archivos de extensión Copy link en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Copy link Copy link
ID cgkebkmimknmkflnkcdagamcifjnbfne
URL Oficial https://chromewebstore.google.com/detail/copy-link/cgkebkmimknmkflnkcdagamcifjnbfne
Descripción Copies a formatted link to the current tab onto the clipboard.
Tamaño del Archivo 17.71 KB
Cantidad de Instalaciones 229
Versión Actual 1.0
Última Actualización 2017-01-28
Fecha de Publicación 2017-01-28
Calificación 3.50/5 Total de 2 Calificaciones
Desarrollador Tim Dierks
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/tdierks/copy-url-ext
URL de la Página de Ayuda https://github.com/tdierks/copy-url-ext/blob/master/README.md
Idiomas Soportados 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"
    ]
}