Enable Clipboard

Enable clipboard and context menu in disabled websites

Was ist Enable Clipboard?

Enable Clipboard ist eine Chrome-Erweiterung, die von s1n7ax entwickelt wurde, und ihr Hauptmerkmal ist "Enable clipboard and context menu in disabled websites".

Erweiterungsscreenshots

screenshot

Enable Clipboard-Erweiterungs-CRX-Datei herunterladen

Laden Sie Enable Clipboard-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Enable Clipboard Enable Clipboard
ID oabailhgoobiboghkmlppflobceplfde
Offizielle URL https://chromewebstore.google.com/detail/enable-clipboard/oabailhgoobiboghkmlppflobceplfde
Beschreibung Enable clipboard and context menu in disabled websites
Dateigröße 14.02 KB
Installationsanzahl 41
Aktuelle Version 1.0
Letztes Update 2021-12-16
Veröffentlichungsdatum 2021-12-15
Entwickler s1n7ax
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/s1n7ax/enable-clipboard
Hilfeseite URL https://github.com/s1n7ax/enable-clipboard/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}