Text Copy

Copy all text in a tag

Qu'est-ce que Text Copy ?

Text Copy est une extension Chrome développée par textcopyext, et sa fonction principale est "Copy all text in a tag".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Text Copy

Téléchargez les fichiers d'extension Text Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
URL Officiel https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
Description Copy all text in a tag
Taille du Fichier 470 KB
Nombre d'Installations 5,000
Version Actuelle 1.1
Dernière Mise à Jour 2018-07-05
Date de Publication 2018-07-05
Évaluation 4.44/5 Total 16 Évaluations
Développeur textcopyext
Type de Paiement free
Langues Prises en Charge 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
        }
    ]
}