Copy Link Text

Copies the text inside links

¿Qué es Copy Link Text?

Copy Link Text es una extensión de Chrome desarrollada por vestakuphal285, y su función principal es "Copies the text inside links".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Copy Link Text

Descarga archivos de extensión Copy Link Text 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

                        Enables you to copy the text of a link within the context menu.
Just right click on the link and select "Copy link text".

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

Información Básica de la Extensión

Nombre Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
URL Oficial https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
Descripción Copies the text inside links
Tamaño del Archivo 565 KB
Cantidad de Instalaciones 30,654
Versión Actual 3.0.1
Última Actualización 2023-11-20
Fecha de Publicación 2020-09-25
Calificación 3.23/5 Total de 78 Calificaciones
Desarrollador vestakuphal285
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://sites.google.com/view/pass-generator-2023/home
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}