Text Copy

Copy all text in a tag

Was ist Text Copy?

Text Copy ist eine Chrome-Erweiterung, die von textcopyext entwickelt wurde, und ihr Hauptmerkmal ist "Copy all text in a tag".

Erweiterungsscreenshots

screenshot

Text Copy-Erweiterungs-CRX-Datei herunterladen

Laden Sie Text Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
Offizielle URL https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
Beschreibung Copy all text in a tag
Dateigröße 470 KB
Installationsanzahl 5,000
Aktuelle Version 1.1
Letztes Update 2018-07-05
Veröffentlichungsdatum 2018-07-05
Bewertung 4.44/5 Insgesamt 16 Bewertungen
Entwickler textcopyext
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}