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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}