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
公式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
Eメール [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"
        }
    ]
}