Enable Clipboard

Enable clipboard and context menu in disabled websites

Qu'est-ce que Enable Clipboard ?

Enable Clipboard est une extension Chrome développée par s1n7ax, et sa fonction principale est "Enable clipboard and context menu in disabled websites".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Enable Clipboard

Téléchargez les fichiers d'extension Enable Clipboard au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Enable Clipboard Enable Clipboard
ID oabailhgoobiboghkmlppflobceplfde
URL Officiel https://chromewebstore.google.com/detail/enable-clipboard/oabailhgoobiboghkmlppflobceplfde
Description Enable clipboard and context menu in disabled websites
Taille du Fichier 14.02 KB
Nombre d'Installations 41
Version Actuelle 1.0
Dernière Mise à Jour 2021-12-16
Date de Publication 2021-12-15
Développeur s1n7ax
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/s1n7ax/enable-clipboard
URL de la Page d'Aide https://github.com/s1n7ax/enable-clipboard/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}