Deep Link

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

Vad är Deep Link?

Deep Link är en Chrome-tillägg utvecklad av jtbandes, och dess huvudfunktion är "Context menu item for linking to a particular element on a page.".

Tilläggsskärmbilder

screenshot

Ladda ner Deep Link-förlängningens CRX-fil

Ladda ner Deep Link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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)                    

Grundläggande Information om Tillägg

Namn Deep Link Deep Link
ID dnlfigefegjefjojijlpgiicodlgdhci
Officiell webbadress https://chromewebstore.google.com/detail/deep-link/dnlfigefegjefjojijlpgiicodlgdhci
Beskrivning Context menu item for linking to a particular element on a page.
Filstorlek 4.13 KB
Antal Installationer 159
Aktuell Version 0.1
Senast Uppdaterad 2015-05-31
Publiceringsdatum 2015-05-31
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare jtbandes
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}