Deep Link

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

Deep Linkคืออะไร?

Deep Link เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jtbandes และคุณลักษณะหลักของมันคือ "Context menu item for linking to a particular element on a page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Deep Link

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}