Enable Clipboard

Enable clipboard and context menu in disabled websites

什么是Enable Clipboard?

Enable Clipboard是由s1n7ax开发的Chrome扩展程序,该扩展的主要功能是“Enable clipboard and context menu in disabled websites”。

扩展截图

screenshot

下载Enable Clipboard扩展crx文件

下载Enable Clipboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Enable Clipboard Enable Clipboard
ID oabailhgoobiboghkmlppflobceplfde
官方URL https://chromewebstore.google.com/detail/enable-clipboard/oabailhgoobiboghkmlppflobceplfde
简介 Enable clipboard and context menu in disabled websites
文件大小 14.02 KB
安装次数 41
当前版本 1.0
更新时间 2021-12-16
上架时间 2021-12-15
开发者 s1n7ax
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/s1n7ax/enable-clipboard
帮助页面URL https://github.com/s1n7ax/enable-clipboard/issues
支持的语言 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"
            ]
        }
    ]
}