Enable Copy/Paste

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

Cos'è Enable Copy/Paste?

Enable Copy/Paste è un'estensione di Chrome sviluppata da dominicfallows, e la sua funzione principale è "Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Enable Copy/Paste

Scarica i file di estensione Enable Copy/Paste in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Enable Copy/Paste Enable Copy/Paste
ID leghnagnephbfcencnbonkbdimeokhem
URL Ufficiale https://chromewebstore.google.com/detail/enable-copypaste/leghnagnephbfcencnbonkbdimeokhem
Descrizione Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.
Dimensione del File 12.09 KB
Conteggio Installazioni 2,230
Versione Corrente 1.0
Ultimo Aggiornamento 2021-11-28
Data di Pubblicazione 2021-11-27
Sviluppatore dominicfallows
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dominicfallows/enable-copy-paste-chrome-extension
URL della Pagina di Aiuto https://github.com/dominicfallows/enable-copy-paste-chrome-extension/issues
Lingue Supportate 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"
    }
}