Text Copy

Copy all text in a tag

什麼是Text Copy?

Text Copy是由textcopyext開發的Chrome擴展程式,該擴展的主要功能是“Copy all text in a tag”。

擴展截圖

screenshot

下載Text Copy擴展crx文件

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

擴展使用說明

                        Text Copy allows for simple keyboard shortcuts to highlight and copy text to the clipboard. This text can be single blocks of texts, or a range of text.                    

擴展基本資訊

名稱 Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
官方網址 https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
簡介 Copy all text in a tag
檔案大小 470 KB
安裝次數 5,000
目前版本 1.1
更新時間 2018-07-05
上架時間 2018-07-05
評分 4.44/5 共 16 次評分
開發者 textcopyext
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Copy",
    "version": "1.1",
    "description": "Copy all text in a tag",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "windows"
    ],
    "browser_action": {
        "name": "Text Copy",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/res\/jquery-2.2.0.min.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "persistent": true
        }
    ]
}