Deep Link

Context menu item for linking to a particular element on a page.

Cos'è Deep Link?

Deep Link è un'estensione di Chrome sviluppata da jtbandes, e la sua funzione principale è "Context menu item for linking to a particular element on a page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Deep Link

Scarica i file di estensione Deep Link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Like that "¶" icon you know and love... anywhere.

Right-click on the page and choose "Deep Link" to link directly to the nearest element, if available. (http://the/page#nearest-section)                    

Informazioni di Base sull'Estensione

Nome Deep Link Deep Link
ID dnlfigefegjefjojijlpgiicodlgdhci
URL Ufficiale https://chromewebstore.google.com/detail/deep-link/dnlfigefegjefjojijlpgiicodlgdhci
Descrizione Context menu item for linking to a particular element on a page.
Dimensione del File 4.13 KB
Conteggio Installazioni 159
Versione Corrente 0.1
Ultimo Aggiornamento 2015-05-31
Data di Pubblicazione 2015-05-31
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore jtbandes
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deep Link",
    "author": "Jacob Bandes-Storch",
    "version": "0.1",
    "description": "Context menu item for linking to a particular element on a page.",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "eventPage.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}