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