Copy Link Text

Copies the text inside links

什麼是Copy Link Text?

Copy Link Text是由vestakuphal285開發的Chrome擴展程式,該擴展的主要功能是“Copies the text inside links”。

擴展截圖

screenshot
screenshot

下載Copy Link Text擴展crx文件

下載Copy Link Text擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Enables you to copy the text of a link within the context menu.
Just right click on the link and select "Copy link text".

Update ver: 1.12.1
 - Added copy text link history management feature, can review, export file txt and delete log history.
 - You can also share the copy text link history including text and link for you on social networks such as Twitter, LinkedIn and Facebook (automatically share using post api).                    

擴展基本資訊

名稱 Copy Link Text Copy Link Text
ID loeniidbmeohdlmipbpkfmiogbcncibh
官方網址 https://chromewebstore.google.com/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh
簡介 Copies the text inside links
檔案大小 565 KB
安裝次數 30,654
目前版本 3.0.1
更新時間 2023-11-20
上架時間 2020-09-25
評分 3.23/5 共 78 次評分
開發者 vestakuphal285
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://sites.google.com/view/pass-generator-2023/home
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Link Text",
    "description": "Copies the text inside links",
    "default_locale": "en",
    "version": "3.0.1",
    "icons": {
        "16": ".\/icon-128.png",
        "48": ".\/icon-128.png",
        "128": ".\/icon-128.png"
    },
    "content_scripts": [
        {
            "css": [
                ".\/content-style.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*",
        "*:\/\/*.twitter.com\/*",
        "*:\/\/*.linkedin.com\/*",
        "*:\/\/anotepad.com\/*"
    ],
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "contextMenus"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    }
}