LinkToId

This extension helps to identify and use linkable IDs within a page.

¿Qué es LinkToId?

LinkToId es una extensión de Chrome desarrollada por Unknown, y su función principal es "This extension helps to identify and use linkable IDs within a page.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión LinkToId

Descarga archivos de extensión LinkToId 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 the fragment identifier (hash part) of an URL matches an element ID, the browser will scroll to that element. This is great if you want to link directly to a particular part or section of a page. LinkToId makes it super easy to identify an element ID and to obtain the URL of said element.

Press Ctrl and Alt to show the LinkToId tooltip, which will identify the closest linkable element. Click the left mouse button while the tooltip is showing to modify the fragment identifier of the current URL. You can now copy the full URL and use it anywhere as a direct link.

LinkToId is currently somewhat limited. If you want to contribute to development or suggest improvement ideas, please visit https://github.com/provegard/LinkToId.                    

Información Básica de la Extensión

Nombre LinkToId LinkToId
ID cggiopngamlojpeoliehhppmdphinjen
URL Oficial https://chromewebstore.google.com/detail/linktoid/cggiopngamlojpeoliehhppmdphinjen
Descripción This extension helps to identify and use linkable IDs within a page.
Tamaño del Archivo 14.07 KB
Cantidad de Instalaciones 97
Versión Actual 0.0.1
Última Actualización 2015-01-04
Fecha de Publicación 2015-01-04
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador Unknown
Tipo de Pago free
Sitio Web de la Extensión https://github.com/provegard/LinkToId
URL de la Página de Ayuda https://github.com/provegard/linktoid/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LinkToId",
    "version": "0.0.1",
    "manifest_version": 2,
    "short_name": "LinkToId",
    "description": "This extension helps to identify and use linkable IDs within a page.",
    "author": "Per Rovegard",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "linktoid.js"
            ],
            "css": [
                "linktoid.css"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    }
}