Copy Element Text

Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.

Was ist Copy Element Text?

Copy Element Text ist eine Chrome-Erweiterung, die von bracketsage entwickelt wurde, und ihr Hauptmerkmal ist "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".

Copy Element Text-Erweiterungs-CRX-Datei herunterladen

Laden Sie Copy Element Text-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

                        Copy Element Text lets you right click on an element and copy its contents or the contents of parent elements. Useful for pages that won't let you highlight.                    

Grundlegende Informationen zur Erweiterung

Name Copy Element Text Copy Element Text
ID ikhdonfbocnkmhhcaejgopdlknaemhaj
Offizielle URL https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj
Beschreibung Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Dateigröße 32.97 KB
Installationsanzahl 161
Aktuelle Version 0.0.2
Letztes Update 2015-08-06
Veröffentlichungsdatum 2015-08-06
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler bracketsage
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "jq.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jq.js",
                "content.js"
            ],
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.",
    "manifest_version": 2,
    "name": "Copy Element Text",
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead"
    ],
    "short_name": "Copy ELement Text",
    "version": "0.0.2"
}