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
Eメール [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"
            ]
        }
    ]
}