Enable Clipboard

Enable clipboard and context menu in disabled websites

O que é Enable Clipboard?

Enable Clipboard é uma extensão do Chrome desenvolvida por s1n7ax, e sua principal característica é "Enable clipboard and context menu in disabled websites".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Enable Clipboard

Baixe arquivos de extensão Enable Clipboard no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Enable Clipboard Enable Clipboard
ID oabailhgoobiboghkmlppflobceplfde
URL Oficial https://chromewebstore.google.com/detail/enable-clipboard/oabailhgoobiboghkmlppflobceplfde
Descrição Enable clipboard and context menu in disabled websites
Tamanho do Arquivo 14.02 KB
Contagem de Instalações 41
Versão Atual 1.0
Última Atualização 2021-12-16
Data de Publicação 2021-12-15
Desenvolvedor s1n7ax
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/s1n7ax/enable-clipboard
URL da Página de Ajuda https://github.com/s1n7ax/enable-clipboard/issues
Idiomas Suportados 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"
            ]
        }
    ]
}