LinkToId

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

Co je LinkToId?

LinkToId je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension helps to identify and use linkable IDs within a page.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření LinkToId

Stáhněte si soubory rozšíření LinkToId ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název LinkToId LinkToId
ID cggiopngamlojpeoliehhppmdphinjen
Oficiální URL https://chromewebstore.google.com/detail/linktoid/cggiopngamlojpeoliehhppmdphinjen
Popis This extension helps to identify and use linkable IDs within a page.
Velikost souboru 14.07 KB
Počet instalací 97
Aktuální Verze 0.0.1
Poslední Aktualizace 2015-01-04
Datum Vydání 2015-01-04
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/provegard/LinkToId
URL Stránky Nápovědy https://github.com/provegard/linktoid/issues
Podporované Jazyky 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"
    }
}