Enable Copy/Paste

Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.

Apa itu Enable Copy/Paste?

Enable Copy/Paste adalah ekstensi Chrome yang dikembangkan oleh dominicfallows, dan fitur utamanya adalah "Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Enable Copy/Paste

Unduh file ekstensi Enable Copy/Paste 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

                        This simple extension enables you to use things like complex passwords and paste them directly into password fields on sites that prevent this needlessly.                    

Informasi Dasar Ekstensi

Nama Enable Copy/Paste Enable Copy/Paste
ID leghnagnephbfcencnbonkbdimeokhem
URL Resmi https://chromewebstore.google.com/detail/enable-copypaste/leghnagnephbfcencnbonkbdimeokhem
Deskripsi Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.
Ukuran File 12.09 KB
Jumlah Instalasi 2,230
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-11-28
Tanggal Publikasi 2021-11-27
Pengembang dominicfallows
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/dominicfallows/enable-copy-paste-chrome-extension
URL Halaman Bantuan https://github.com/dominicfallows/enable-copy-paste-chrome-extension/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Copy\/Paste",
    "description": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it.",
    "version": "1.0",
    "author": "Dominic Fallows",
    "homepage_url": "https:\/\/github.com\/dominicfallows\/enable-copy-paste-chrome-extension",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_idle",
            "match_about_blank": false,
            "all_frames": true
        }
    ],
    "action": {
        "default_title": "Enable copy (CTRL+C or CMD+C) \/ paste (CTRL+P or CMD+P) on websites that needlessly block it",
        "default_icon": {
            "16": "\/icons\/icon16.png",
            "32": "\/icons\/icon32.png",
            "48": "\/icons\/icon48.png",
            "128": "\/icons\/icon128.png"
        }
    },
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    }
}