Deep Link

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

What is Deep Link?

Deep Link is a Chrome extension developed by jtbandes, and its main feature is "Context menu item for linking to a particular element on a page.".

Extension Screenshots

screenshot

Download Deep Link Extension CRX File

Download Deep Link extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Deep Link Deep Link
ID dnlfigefegjefjojijlpgiicodlgdhci
Official URL https://chromewebstore.google.com/detail/deep-link/dnlfigefegjefjojijlpgiicodlgdhci
Description Context menu item for linking to a particular element on a page.
File Size 4.13 KB
Installation Count 159
Current Version 0.1
Last Updated 2015-05-31
Publish Date 2015-05-31
Rating 4.00/5 Total 4 Ratings
Developer jtbandes
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}