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"
            ]
        }
    ]
}