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) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://devroid.com และคุณลักษณะหลักของมันคือ "This app enables mouse dragging and right-clicking on sites where these functions are disabled."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DragFree (Mouse Drag & Right Click Release)
ดาวน์โหลดไฟล์ส่วนขยาย DragFree (Mouse Drag & Right Click Release) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
- 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": [ "*:\/\/*\/*" ] } |