Copy Element Text

Copies the text inside elements

Apa itu Copy Element Text?

Copy Element Text adalah ekstensi Chrome yang dikembangkan oleh mistweaver.co, dan fitur utamanya adalah "Copies the text inside elements".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Copy Element Text

Unduh file ekstensi Copy Element Text dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Enables you to copy the text of an element within the context menu.
Just right click on the link and select "Copy element text".

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

Informasi Dasar Ekstensi

Nama Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
URL Resmi https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
Deskripsi Copies the text inside elements
Ukuran File 41.63 KB
Jumlah Instalasi 564
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2022-10-19
Tanggal Publikasi 2022-10-03
Penilaian 3.60/5 Total 5 Penilaian
Pengembang mistweaver.co
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}