Text Copy

Copy all text in a tag

What is Text Copy?

Text Copy is a Chrome extension developed by textcopyext, and its main feature is "Copy all text in a tag".

Extension Screenshots

screenshot

Download Text Copy Extension CRX File

Download Text Copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
Official URL https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
Description Copy all text in a tag
File Size 470 KB
Installation Count 5,000
Current Version 1.1
Last Updated 2018-07-05
Publish Date 2018-07-05
Rating 4.44/5 Total 16 Ratings
Developer textcopyext
Payment Type free
Supported Languages 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
        }
    ]
}