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
官方網址 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"
            ]
        }
    ]
}