Text Copy

Copy all text in a tag

Apa itu Text Copy?

Text Copy adalah ekstensi Chrome yang dikembangkan oleh textcopyext, dan fitur utamanya adalah "Copy all text in a tag".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Text Copy

Unduh file ekstensi Text Copy 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

                        Text Copy allows for simple keyboard shortcuts to highlight and copy text to the clipboard. This text can be single blocks of texts, or a range of text.                    

Informasi Dasar Ekstensi

Nama Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
URL Resmi https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
Deskripsi Copy all text in a tag
Ukuran File 470 KB
Jumlah Instalasi 5,000
Versi Saat Ini 1.1
Terakhir Diperbarui 2018-07-05
Tanggal Publikasi 2018-07-05
Penilaian 4.44/5 Total 16 Penilaian
Pengembang textcopyext
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Copy",
    "version": "1.1",
    "description": "Copy all text in a tag",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "windows"
    ],
    "browser_action": {
        "name": "Text Copy",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/res\/jquery-2.2.0.min.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "persistent": true
        }
    ]
}