Copy Element Text

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

Hvad er Copy Element Text?

Copy Element Text er en Chrome-udvidelse udviklet af bracketsage, og dens hovedfunktion er "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".

Download Copy Element Text-udvidelses-CRX-fil

Download Copy Element Text-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Copy Element Text Copy Element Text
ID ikhdonfbocnkmhhcaejgopdlknaemhaj
Officiel URL https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj
Beskrivelse Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Filstørrelse 32.97 KB
Antal Installationer 161
Nuværende Version 0.0.2
Senest Opdateret 2015-08-06
Udgivelsesdato 2015-08-06
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler bracketsage
Betalingsmetode free
Understøttede Sprog 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"
}