Enable Copy Paste - E.C.P

Enable copy paste on websites that have disabled copy paste.

¿Qué es Enable Copy Paste - E.C.P?

Enable Copy Paste - E.C.P es una extensión de Chrome desarrollada por https://kodemuse.dev, y su función principal es "Enable copy paste on websites that have disabled copy paste.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Enable Copy Paste - E.C.P

Descarga archivos de extensión Enable Copy Paste - E.C.P en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        How to use:

- Click on the extension icon
- After a popup is opened, use the “Enable copy paste for all websites” checkbox.
- Manually refresh the page and see if the extension has successfully enabled copy paste functionality on the website.
- Use "Aggressive Mode" if default mode does not enable copy paste on websites.

This extension may not work for websites that use extremely sophisticated methods for disabling copy paste functionality.

Privacy notice: 
This software neither collects nor transmits any personally identifiable information. This software does not track your browsing behaviour. Information necessary for functioning of this software is stored on the devices of the end user, our servers do not have access to this information.                    

Información Básica de la Extensión

Nombre Enable Copy Paste - E.C.P Enable Copy Paste - E.C.P
ID fpjppnhnpnknbenelmbnidjbolhandnf
URL Oficial https://chromewebstore.google.com/detail/enable-copy-paste-ecp/fpjppnhnpnknbenelmbnidjbolhandnf
Descripción Enable copy paste on websites that have disabled copy paste.
Tamaño del Archivo 92.99 KB
Cantidad de Instalaciones 161,181
Versión Actual 2.0.0.1
Última Actualización 2023-05-24
Fecha de Publicación 2021-01-19
Calificación 3.92/5 Total de 60 Calificaciones
Desarrollador https://kodemuse.dev
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.kodemuse.dev/enable-copy-paste/
URL de la Página de Ayuda https://www.kodemuse.dev/enable-copy-paste/
URL de la Página de Política de Privacidad https://www.kodemuse.dev/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Copy Paste - E.C.P",
    "description": "Enable copy paste on websites that have disabled copy paste.",
    "short_name": "E.C.P",
    "manifest_version": 3,
    "version": "2.0.0.1",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/www.kodemuse.dev\/enable-copy-paste\/",
    "background": {
        "service_worker": "\/background\/background_sw.js"
    },
    "action": {
        "default_title": "Enable Copy Paste - E.C.P",
        "default_popup": "\/popup\/popup.html"
    },
    "icons": {
        "16": "\/icon\/16.png",
        "24": "\/icon\/24.png",
        "32": "\/icon\/32.png",
        "48": "\/icon\/48.png",
        "64": "\/icon\/64.png",
        "128": "\/icon\/128.png",
        "256": "\/icon\/256.png",
        "512": "\/icon\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "\/content_script\/enable_copy.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/content_script_web_accessible\/ecp_aggressive.js",
                "\/content_script_web_accessible\/ecp_regular.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}