Copy Element Text

Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.

什麼是Copy Element Text?

Copy Element Text是由bracketsage開發的Chrome擴展程式,該擴展的主要功能是“Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.”。

下載Copy Element Text擴展crx文件

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

擴展使用說明

                        Copy Element Text lets you right click on an element and copy its contents or the contents of parent elements. Useful for pages that won't let you highlight.                    

擴展基本資訊

名稱 Copy Element Text Copy Element Text
ID ikhdonfbocnkmhhcaejgopdlknaemhaj
官方網址 https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj
簡介 Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
檔案大小 32.97 KB
安裝次數 161
目前版本 0.0.2
更新時間 2015-08-06
上架時間 2015-08-06
評分 5.00/5 共 3 次評分
開發者 bracketsage
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "jq.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jq.js",
                "content.js"
            ],
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.",
    "manifest_version": 2,
    "name": "Copy Element Text",
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead"
    ],
    "short_name": "Copy ELement Text",
    "version": "0.0.2"
}