DragFree (Mouse Drag & Right Click Release)
This app enables mouse dragging and right-clicking on sites where these functions are disabled.
DragFree (Mouse Drag & Right Click Release)란 무엇입니까?
DragFree (Mouse Drag & Right Click Release)은(는) https://devroid.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This app enables mouse dragging and right-clicking on sites where these functions are disabled."입니다.
확장 프로그램 스크린샷
DragFree (Mouse Drag & Right Click Release) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- 2023-11-21 : A feature to check the character count of the entered text has been added. - Right click enable. Allows you to use the feature on a site that has been prevented from dragging the mouse and right-clicking the mouse. - When the "Automatic" state is set to "Manual", the operation is always performed. - The hot key is set to "Alt + 1" by default and you can change the hot key by clicking the "Defining shortcut" button. * mouse right-click / mouse drag
확장 프로그램 기본 정보
이름 | DragFree (Mouse Drag & Right Click Release) |
ID | cnfngpgfjllafbghaimjcmailafcdhod |
공식 URL | https://chromewebstore.google.com/detail/dragfree-mouse-drag-right/cnfngpgfjllafbghaimjcmailafcdhod |
설명 | This app enables mouse dragging and right-clicking on sites where these functions are disabled. |
파일 크기 | 84.7 KB |
설치 횟수 | 410,465 |
현재 버전 | 7.8 |
최근 업데이트 | 2023-12-09 |
출시 날짜 | 2019-10-03 |
평점 | 4.47/5 총 131 개의 평점 |
개발자 | https://devroid.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,zh-CN,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "short_name": "Drag-Free", "description": "__MSG_appDescription__", "default_locale": "en", "version": "7.8", "action": { "default_icon": ".\/images\/icon.png", "default_popup": "main.html", "default_title": "Drag Free" }, "background": { "service_worker": "background.js" }, "commands": { "releasedrag": { "suggested_key": { "default": "Alt+1", "mac": "Alt+1" }, "description": "DragFree Hotkey" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "releaseDrag.js" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "activeTab", "storage" ], "host_permissions": [ "*:\/\/*\/*" ] } |