Copy Link Name

Copies the name of a link (anchor text) to the clipboard.

Copy Link Nameคืออะไร?

Copy Link Name เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.adelsaoud.com และคุณลักษณะหลักของมันคือ "Copies the name of a link (anchor text) to the clipboard."

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

screenshot

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

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

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

                        Developed exclusively for Chrome. This extension is not guaranteed to work with other Chromium-based browsers like Edge, Brave, Opera, etc... Please don't report issues or down-vote this extension in the Chrome Web Store if you're using a non-Chrome browser.

Makes it very easy to copy the visible text of a link (also called link name or anchor text).
Just right click on a link & choose "Copy Link Name".

Note: Like all Content Script extensions, this extension is automatically disabled in the Chrome Extensions site. So please test it on a normal web page.                    

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

ชื่อ Copy Link Name Copy Link Name
ID mafjnaphoepgijmgfeemillelgkeigid
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/copy-link-name/mafjnaphoepgijmgfeemillelgkeigid
คำอธิบาย Copies the name of a link (anchor text) to the clipboard.
ขนาดไฟล์ 10.84 KB
จำนวนการติดตั้ง 7,162
เวอร์ชันปัจจุบัน 1.0.8
อัปเดตครั้งล่าสุด 2023-09-14
วันที่เผยแพร่ 2016-10-14
คะแนน 3.33/5 รวมทั้งหมด 109 คะแนน
ผู้พัฒนา https://www.adelsaoud.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.adelsaoud.com/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Name",
    "version": "1.0.8",
    "description": "Copies the name of a link (anchor text) to the clipboard.",
    "permissions": [
        "contextMenus",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "copy_link_name.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}