Enable Clipboard

Enable clipboard and context menu in disabled websites

¿Qué es Enable Clipboard?

Enable Clipboard es una extensión de Chrome desarrollada por s1n7ax, y su función principal es "Enable clipboard and context menu in disabled websites".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Enable Clipboard

Descarga archivos de extensión Enable Clipboard 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

                        Open source extension to enable clipboard and context menu in disabled websites.

Many banking websites disables copy and paste actions. So typing your 25 character long password and bank account numbers is a nightmare. This extension stops the propagation of 'contextmenu', 'copy', 'paste' events so the website cannot prevent the default behavior.

Limitations:
* If the actions are registered in the capturing phase, this plugin may not work (Please create a GitHub issue including the details)

How to use:
* Install the plugin
* Go to the website that you want to enable the clipboard and context menu
* Click on the plugin action icon
* Click on the  "Unlock the Power" button to add the website
* Reload the page
Permissions: 
* Storage - Persistent storage to save the whitelisted URL to enable this plugin on
* Tab - Access the current URL from active tab                    

Información Básica de la Extensión

Nombre Enable Clipboard Enable Clipboard
ID oabailhgoobiboghkmlppflobceplfde
URL Oficial https://chromewebstore.google.com/detail/enable-clipboard/oabailhgoobiboghkmlppflobceplfde
Descripción Enable clipboard and context menu in disabled websites
Tamaño del Archivo 14.02 KB
Cantidad de Instalaciones 41
Versión Actual 1.0
Última Actualización 2021-12-16
Fecha de Publicación 2021-12-15
Desarrollador s1n7ax
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/s1n7ax/enable-clipboard
URL de la Página de Ayuda https://github.com/s1n7ax/enable-clipboard/issues
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable Clipboard",
    "version": "1.0",
    "description": "Enable clipboard and context menu in disabled websites",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "images\/img_enabled128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/img_disabled128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ]
}