Copy Link Name

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

什麼是Copy Link Name?

Copy Link Name是由https://www.adelsaoud.com開發的Chrome擴展程式,該擴展的主要功能是“Copies the name of a link (anchor text) to the clipboard.”。

擴展截圖

screenshot

下載Copy Link Name擴展crx文件

下載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
官方網址 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"
        }
    ]
}