Text Copy

Copy all text in a tag

Cos'è Text Copy?

Text Copy è un'estensione di Chrome sviluppata da textcopyext, e la sua funzione principale è "Copy all text in a tag".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Text Copy

Scarica i file di estensione Text Copy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
URL Ufficiale https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
Descrizione Copy all text in a tag
Dimensione del File 470 KB
Conteggio Installazioni 5,000
Versione Corrente 1.1
Ultimo Aggiornamento 2018-07-05
Data di Pubblicazione 2018-07-05
Valutazione 4.44/5 Totale 16 Valutazioni
Sviluppatore textcopyext
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}