Text Copy

Copy all text in a tag

Wat is Text Copy?

Text Copy is een Chrome-extensie ontwikkeld door textcopyext, en de belangrijkste functie is "Copy all text in a tag".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Text Copy

Download Text Copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
Officiële URL https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
Beschrijving Copy all text in a tag
Bestandsgrootte 470 KB
Aantal Installaties 5,000
Huidige Versie 1.1
Laatst Bijgewerkt 2018-07-05
Publicatiedatum 2018-07-05
Beoordeling 4.44/5 Totaal 16 Beoordelingen
Ontwikkelaar textcopyext
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}