Copy Link Name

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

Copy Link Name là gì?

Copy Link Name là một tiện ích mở rộng Chrome được phát triển bởi https://www.adelsaoud.com, và tính năng chính của nó là "Copies the name of a link (anchor text) to the clipboard.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Copy Link Name

Tải xuống các tệp mở rộng Copy Link Name dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Copy Link Name Copy Link Name
ID mafjnaphoepgijmgfeemillelgkeigid
URL Chính Thức https://chromewebstore.google.com/detail/copy-link-name/mafjnaphoepgijmgfeemillelgkeigid
Mô tả Copies the name of a link (anchor text) to the clipboard.
Kích Thước Tệp 10.84 KB
Số Lần Cài Đặt 7,162
Phiên Bản Hiện Tại 1.0.8
Cập Nhật Lần Cuối 2023-09-14
Ngày Phát Hành 2016-10-14
Đánh Giá 3.33/5 Tổng số 109 Đánh Giá
Nhà Phát Triển https://www.adelsaoud.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.adelsaoud.com/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}