LinkToId

This extension helps to identify and use linkable IDs within a page.

LinkToIdคืออะไร?

LinkToId เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension helps to identify and use linkable IDs within a page."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย LinkToId ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        When the fragment identifier (hash part) of an URL matches an element ID, the browser will scroll to that element. This is great if you want to link directly to a particular part or section of a page. LinkToId makes it super easy to identify an element ID and to obtain the URL of said element.

Press Ctrl and Alt to show the LinkToId tooltip, which will identify the closest linkable element. Click the left mouse button while the tooltip is showing to modify the fragment identifier of the current URL. You can now copy the full URL and use it anywhere as a direct link.

LinkToId is currently somewhat limited. If you want to contribute to development or suggest improvement ideas, please visit https://github.com/provegard/LinkToId.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LinkToId LinkToId
ID cggiopngamlojpeoliehhppmdphinjen
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/linktoid/cggiopngamlojpeoliehhppmdphinjen
คำอธิบาย This extension helps to identify and use linkable IDs within a page.
ขนาดไฟล์ 14.07 KB
จำนวนการติดตั้ง 97
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2015-01-04
วันที่เผยแพร่ 2015-01-04
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/provegard/LinkToId
URL หน้าช่วยเหลือ https://github.com/provegard/linktoid/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LinkToId",
    "version": "0.0.1",
    "manifest_version": 2,
    "short_name": "LinkToId",
    "description": "This extension helps to identify and use linkable IDs within a page.",
    "author": "Per Rovegard",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "linktoid.js"
            ],
            "css": [
                "linktoid.css"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    }
}