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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}