Deep Link

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

什么是Deep Link?

Deep Link是由jtbandes开发的Chrome扩展程序,该扩展的主要功能是“Context menu item for linking to a particular element on a page.”。

扩展截图

screenshot

下载Deep Link扩展crx文件

下载Deep Link扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)                    

扩展基本信息

名称 Deep Link Deep Link
ID dnlfigefegjefjojijlpgiicodlgdhci
官方URL https://chromewebstore.google.com/detail/deep-link/dnlfigefegjefjojijlpgiicodlgdhci
简介 Context menu item for linking to a particular element on a page.
文件大小 4.13 KB
安装次数 159
当前版本 0.1
更新时间 2015-05-31
上架时间 2015-05-31
评分 4.00/5 共4次评分
开发者 jtbandes
付费类型 free
支持的语言 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"
            ]
        }
    ]
}