Copy Link/Tab Name and URL

Copy the name and URL of a link or a Tab.

Copy Link/Tab Name and URL란 무엇입니까?

Copy Link/Tab Name and URL은(는) https://sites.google.com/site/copylinknameandurl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copy the name and URL of a link or a Tab."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Copy Link/Tab Name and URL 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It adds a command to the context munu on the link and copies the link's name(source anchor) and URL with the plain text format. It also copies the tab's titile and url.
So this extension makes it very easy to share the links with IM, Email, blog and so on.

It has a Preference Page to configure the Format.                    

확장 프로그램 기본 정보

이름 Copy Link/Tab Name and URL Copy Link/Tab Name and URL
ID noakklbbencpgcahamhocalnepfjeeok
공식 URL https://chromewebstore.google.com/detail/copy-linktab-name-and-url/noakklbbencpgcahamhocalnepfjeeok
설명 Copy the name and URL of a link or a Tab.
파일 크기 11.64 KB
설치 횟수 236
현재 버전 3.1
최근 업데이트 2021-04-01
출시 날짜 2020-02-26
개발자 https://sites.google.com/site/copylinknameandurl
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/wadefelix/copylinktabnameandurl
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.1",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/wadefelix\/copylinktabnameandurl",
    "author": "Ren Wei",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icons\/page-16.png",
        "32": "icons\/page-32.png",
        "48": "icons\/page-48.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}