Show Anchors

Allows you to easily see and copy hidden anchors within a webpage.

Show Anchorsคืออะไร?

Show Anchors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eric R และคุณลักษณะหลักของมันคือ "Allows you to easily see and copy hidden anchors within a webpage."

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

screenshot

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

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

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

                        Ever wanted to copy a hidden anchor in a page and had trouble finding it?

Use this tool to reveal hidden anchors in webpages. 

TO USE:
Right click an open webpage, and chose "Show Anchors". A small icon will appear next to the location of each hidden anchor in your current page. Simply click the anchor icon to copy the direct link to your clipboard. 

SHORTCUTS:
- Ctrl+Shift+A will toggle anchors on the current tab.
- Alternatively, pressing the "Esc" button will hide the anchor icons on the current tab if they are visible.

CHANGELOG:

Version 1.8 - Squashed a bug that caused the Show Anchors icon to function improperly when hovering/clicking-to-copy.

Version 1.7 - Added ability to see any element with an "id" attribute, not just specifically anchor html elements, as was the case in previous versions

Version 1.6 - Fixed issues with the context menu after Chrome update

Version 1.4 - Anchors are kept inline to prevent the page from scrolling when exposing anchors. Hovering over them brings them to the front to easily copy the link to the clipboard.

PERMISSIONS:
Show Anchors requires access to data on all websites solely for the purpose of adding the icon to the page. No personal or browsing information is stored by this extension.                    

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

ชื่อ Show Anchors Show Anchors
ID nhppnhnadikeniijclnghjfblnojgige
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/show-anchors/nhppnhnadikeniijclnghjfblnojgige
คำอธิบาย Allows you to easily see and copy hidden anchors within a webpage.
ขนาดไฟล์ 70.62 KB
จำนวนการติดตั้ง 1,614
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2021-05-08
วันที่เผยแพร่ 2020-06-18
คะแนน 2.92/5 รวมทั้งหมด 25 คะแนน
ผู้พัฒนา Eric R
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Anchors",
    "version": "1.8",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "web_accessible_resources": [
        "images\/icon_17.png",
        "js\/jquery.1.7.2.min.js",
        "js\/jquery.hotkeys-0.7.9.min.js",
        "styles\/style.css"
    ],
    "description": "Allows you to easily see and copy hidden anchors within a webpage.",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.1.7.2.min.js",
                "js\/jquery.hotkeys-0.7.9.min.js",
                "content_script.js"
            ],
            "css": [
                "styles\/style.css"
            ],
            "run_at": "document_end"
        }
    ]
}