Allow Right-Click
Re-enable the possibility to use the context menu on sites that overrides it.
Allow Right-Click란 무엇입니까?
Allow Right-Click은(는) itworks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Re-enable the possibility to use the context menu on sites that overrides it."입니다.
확장 프로그램 스크린샷
Allow Right-Click 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension re-enables the context menu. Indeed, many sites prohibit the right-click on images, pretending to protect their content. I think it is illegitimate. Unfortunately, Google Chrome does not have advanced options for what javascript is allowed to do (on the contrary of Konqueror, Opera or firefox). If you think it should, please star (don't add a "me too" comment) In the meantime, this extension provides a workaround, by resetting the oncontextmenu to its default behaviour on many elements of the page. Oh, as a bonus, it works for Flickr and Youtube html5 videos too! If a site is not supported, please report it in the bug tracker, not in the comments. If a site is broken by the extension, please report it in the bug tracker, not in the comments. However, a nice comment is always welcome :-)
확장 프로그램 기본 정보
이름 | |
ID | hompjdfbfmmmgflfjdlnkohcplmboaeo |
공식 URL | https://chrome.google.com/webstore/detail/allow-right-click/hompjdfbfmmmgflfjdlnkohcplmboaeo |
설명 | Re-enable the possibility to use the context menu on sites that overrides it. |
파일 크기 | 22.52 KB |
설치 횟수 | 473,286 |
현재 버전 | 1.5.2.4 |
최근 업데이트 | 2018-06-07 |
출시 날짜 | 2018-06-07 |
평점 | 4.64/5 총 5305 개의 평점 |
개발자 | itworks |
결제 유형 | free |
지원되는 언어 | en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_chrome_extension_name__", "description": "__MSG_chrome_extension_description__", "version": "1.5.2.4", "background": { "page": "background.html" }, "content_scripts": [ { "css": [ "css\/flickr.css" ], "matches": [ "http:\/\/www.flickr.com\/*" ] }, { "all_frames": true, "js": [ "js\/rightclick.js", "js\/new_rightclick.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "default_locale": "en", "icons": { "128": "icons\/icon128.png", "16": "icons\/icon16.png", "48": "icons\/icon48.png" }, "options_page": "options.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |