Copy URL With Hash

Copy a page's URL with a hash at the end that identifies the location on the page

Copy URL With Hashคืออะไร?

Copy URL With Hash เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jhartz.github.io และคุณลักษณะหลักของมันคือ "Copy a page's URL with a hash at the end that identifies the location on the page"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Copy URL With Hash

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

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

                        Have you ever wanted to send a link to a webpage to someone, but the section of the webpage that you are interested in is further down on the page? Rather than telling the person to scroll down the page until they reach the specific point that you want to show them, just use Copy URL With Hash to send them a link that automatically takes them right to that section!

Copy URL With Hash adds a context menu button when you right-click on an element in a webpage that has a specific ID. Then, if you click the "Copy Page URL With Hash" context menu button, it will copy the page's URL with the hash that identifies the location on the page. For more information, including a video example, see the add-on's homepage.

This will not work on every webpage; it all depends on how the author of the page designed it. If the author added many elements with IDs, then this add-on will work well on that page; if the author used absolutely no IDs, then this add-on will not be able to do anything on that page. (To test it, try right-clicking on headings in Wikipedia articles or on the headings on the add-on's homepage.)                    

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

ชื่อ Copy URL With Hash Copy URL With Hash
ID lbmiepikaooplpcipinbgloamfdnbdib
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-url-with-hash/lbmiepikaooplpcipinbgloamfdnbdib
คำอธิบาย Copy a page's URL with a hash at the end that identifies the location on the page
ขนาดไฟล์ 20.42 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2018-01-28
วันที่เผยแพร่ 2018-01-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://jhartz.github.io
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jhartz.github.io/copy-url-with-hash/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0.0",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "52.0"
        }
    },
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "homepage_url": "https:\/\/jhartz.github.io\/copy-url-with-hash\/",
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "storage"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "content-utils.js",
                "OPTIONS.js",
                "content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options-page.html",
        "browser_style": true
    }
}