No pointer
This extension allows you to use your browser without a mouse.
Τι είναι το No pointer;
Το No pointer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "This extension allows you to use your browser without a mouse.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης No pointer
Λήψη αρχείων επέκτασης No pointer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Mouseless browsing! Yes! Throw away your mouse. You don't need it to browse the internet anymore! Press ctrl+shift+a to show keyboard shortcuts to links. Press any of the keys on screen to go to that link. Press ctrl+shift+a again to show shortcuts to the next batch of links. Press ctrl+alt+a to show keyboard shortcuts to links. Opens in a new tab. Press ctrl+alt+a again to show shortcuts to the next batch of links. Press ctrl+shift+s to show keyboard shortcuts to inputs. Press any of the keys on screen to set focus to that input. Note: This is by no means a finished product. It is super experimental. While it probably won't break anything, i'm sure there's bugs in there and not all websites will be supported. Feel free to report any bugs to me. Github repo: https://github.com/c00/no-pointer
Βασικές Πληροφορίες Επέκτασης
Όνομα | No pointer |
ID | hfphokgchjldfbhppbpechglfmonbdcm |
Επίσημο URL | https://chromewebstore.google.com/detail/no-pointer/hfphokgchjldfbhppbpechglfmonbdcm |
Περιγραφή | This extension allows you to use your browser without a mouse. |
Μέγεθος Αρχείου | 48.72 KB |
Αριθμός Εγκαταστάσεων | 68 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2017-08-15 |
Ημερομηνία Δημοσίευσης | 2017-08-13 |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No pointer", "description": "This extension allows you to use your browser without a mouse.", "version": "0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "jquery-3.2.1.min.js", "mousetrap.js", "content.js" ] } ] } |