Deep Link

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

Deep Link là gì?

Deep Link là một tiện ích mở rộng Chrome được phát triển bởi jtbandes, và tính năng chính của nó là "Context menu item for linking to a particular element on a page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Deep Link

Tải xuống các tệp mở rộng Deep Link dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Deep Link Deep Link
ID dnlfigefegjefjojijlpgiicodlgdhci
URL Chính Thức https://chromewebstore.google.com/detail/deep-link/dnlfigefegjefjojijlpgiicodlgdhci
Mô tả Context menu item for linking to a particular element on a page.
Kích Thước Tệp 4.13 KB
Số Lần Cài Đặt 159
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2015-05-31
Ngày Phát Hành 2015-05-31
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển jtbandes
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}