Copy Element Text

Copies the text inside elements

什麼是Copy Element Text?

Copy Element Text是由mistweaver.co開發的Chrome擴展程式,該擴展的主要功能是“Copies the text inside elements”。

擴展截圖

screenshot
screenshot

下載Copy Element Text擴展crx文件

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

擴展使用說明

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

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

擴展基本資訊

名稱 Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
官方網址 https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
簡介 Copies the text inside elements
檔案大小 41.63 KB
安裝次數 564
目前版本 1.0.0
更新時間 2022-10-19
上架時間 2022-10-03
評分 3.60/5 共 5 次評分
開發者 mistweaver.co
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}