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ファイルをダウンロード

Copy Link/Tab Name and URL拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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