LinkToId

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

Qu'est-ce que LinkToId ?

LinkToId est une extension Chrome développée par Unknown, et sa fonction principale est "This extension helps to identify and use linkable IDs within a page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension LinkToId

Téléchargez les fichiers d'extension LinkToId au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom LinkToId LinkToId
ID cggiopngamlojpeoliehhppmdphinjen
URL Officiel https://chromewebstore.google.com/detail/linktoid/cggiopngamlojpeoliehhppmdphinjen
Description This extension helps to identify and use linkable IDs within a page.
Taille du Fichier 14.07 KB
Nombre d'Installations 97
Version Actuelle 0.0.1
Dernière Mise à Jour 2015-01-04
Date de Publication 2015-01-04
Évaluation 5.00/5 Total 4 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/provegard/LinkToId
URL de la Page d'Aide https://github.com/provegard/linktoid/issues
Langues Prises en Charge 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"
    }
}