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 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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": [
"*:\/\/*\/*"
]
} | |