Copy Element Text

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

Co to jest Copy Element Text?

Copy Element Text to rozszerzenie Chrome opracowane przez bracketsage, a jego główną funkcją jest „Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.”.

Pobierz plik CRX rozszerzenia Copy Element Text

Pobierz pliki rozszerzeń Copy Element Text w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Copy Element Text Copy Element Text
ID ikhdonfbocnkmhhcaejgopdlknaemhaj
Oficjalny URL https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj
Opis Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Rozmiar pliku 32.97 KB
Liczba instalacji 161
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2015-08-06
Data Publikacji 2015-08-06
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper bracketsage
Typ Płatności free
Obsługiwane Języki 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"
}