Enable right click

Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…

Enable right click란 무엇입니까?

Enable right click은(는) https://0-9.tumblr.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Enable right click 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Enable right-click on pages where right-click is disabled.

Simply install this extension to make menus appear on pages where right-click is not available.

Source code is here.
https://github.com/kyo-ago/enable-right-click                    

확장 프로그램 기본 정보

이름 Enable right click Enable right click
ID hhojmcideegachlhfgfdhailpfhgknjm
공식 URL https://chromewebstore.google.com/detail/enable-right-click/hhojmcideegachlhfgfdhailpfhgknjm
설명 Enable right-click on pages where right-click is disabled. Simply install this extension to make menus appear on pages where…
파일 크기 246 KB
설치 횟수 178,435
현재 버전 0.0.10
최근 업데이트 2023-10-24
출시 날짜 2017-04-26
평점 3.57/5 총 545 개의 평점
개발자 https://0-9.tumblr.com
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enable right click",
    "version": "0.0.10",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "48": "img\/icon48.png"
    },
    "browser_action": {
        "default_title": "Disable right click",
        "default_icon": "img\/icon128.png"
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "src\/DisableSettings.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "src\/content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "\/web_accessible_resources\/index.js"
    ]
}