Copy Element Text

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

Vad är Copy Element Text?

Copy Element Text är en Chrome-tillägg utvecklad av bracketsage, och dess huvudfunktion är "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.".

Ladda ner Copy Element Text-förlängningens CRX-fil

Ladda ner Copy Element Text-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Copy Element Text Copy Element Text
ID ikhdonfbocnkmhhcaejgopdlknaemhaj
Officiell webbadress https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj
Beskrivning Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Filstorlek 32.97 KB
Antal Installationer 161
Aktuell Version 0.0.2
Senast Uppdaterad 2015-08-06
Publiceringsdatum 2015-08-06
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare bracketsage
Betalningssätt free
Stödda Språk 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"
}