Bookmark Shortcuts Extension
Add keyboard shortcuts for 10 of your bookmarks.
Τι είναι το Bookmark Shortcuts Extension;
Το Bookmark Shortcuts Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον linuscedergren, και η κύρια λειτουργία του είναι "Add keyboard shortcuts for 10 of your bookmarks.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Bookmark Shortcuts Extension
Λήψη αρχείων επέκτασης Bookmark Shortcuts Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows you to add 10 keyboard shortcuts for 10 of your bookmarks. When a shortcut is pressed the url for your bookmark (assigned to that shortcut) is opened in your browser. The first 10 bookmarks in your bookmarks list are the bookmarks assigned to the 10 shortcuts you've specified. Go to chrome://extensions/shortcuts and scroll down to "Bookmark Shortcuts Extension" to choose your shortcut key combinations. A better explanation of how to use this extension: (originally written by Miguel Garza in a review of this extension, so all credits for this great explanation goes to Miguel) You get up to 10 bookmarks that you can load by keyboard shortcut. The bookmarks *must* be in your bookmarks bar. The first bookmark in your bookmarks bar is the first bookmark you can assign a keyboard shortcut to, the 2nd bookmark in your bookmarks bar is the 2nd bookmark you can assign a keyboard shortcut to, etc. To assign the keyboard shortcuts to the bookmarks, depending on your browser, type one or the other of the following web addresses in your browser's address bar--for Chrome, type "chrome://extensions/shortcuts" and press Enter. For Microsoft Edge, type "edge://extensions/shortcuts" and press Enter. Scroll down to "Bookmark Shortcuts Extension." There will be 10 slots there for 10 bookmarks, labeled "Bookmark 1" to "Bookmark 10." Click in the box next to any label, and then press the keyboard shortcut you want that bookmark to have (such as Alt-1 for Bookmark 1, Alt-2 for Bookmark 2, etc.). The combination you typed will be listed in the box. That's it! Now if you press the keyboard shortcut you assigned to a bookmark (such as Alt-1), that bookmark will be opened in a new tab.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Bookmark Shortcuts Extension |
ID | fncelbkbpljhacojmfbcajibgdkaegjf |
Επίσημο URL | https://chromewebstore.google.com/detail/bookmark-shortcuts-extens/fncelbkbpljhacojmfbcajibgdkaegjf |
Περιγραφή | Add keyboard shortcuts for 10 of your bookmarks. |
Μέγεθος Αρχείου | 10.04 KB |
Αριθμός Εγκαταστάσεων | 1,099 |
Τρέχουσα Έκδοση | 1.3.0 |
Τελευταία Ενημέρωση | 2023-03-03 |
Ημερομηνία Δημοσίευσης | 2020-10-17 |
Αξιολόγηση | 3.64/5 Συνολικά 14 Αξιολογήσεις |
Προγραμματιστής | linuscedergren |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bookmark Shortcuts Extension", "version": "1.3.0", "manifest_version": 3, "description": "Add keyboard shortcuts for 10 of your bookmarks.", "permissions": [ "bookmarks", "tabs" ], "background": { "service_worker": ".\/script.js" }, "icons": { "128": ".\/icon.png" }, "commands": { "bookmark_0": { "description": "Bookmark 1", "global": false }, "bookmark_1": { "description": "Bookmark 2", "global": false }, "bookmark_2": { "description": "Bookmark 3", "global": false }, "bookmark_3": { "description": "Bookmark 4", "global": false }, "bookmark_4": { "description": "Bookmark 5", "global": false }, "bookmark_5": { "description": "Bookmark 6", "global": false }, "bookmark_6": { "description": "Bookmark 7", "global": false }, "bookmark_7": { "description": "Bookmark 8", "global": false }, "bookmark_8": { "description": "Bookmark 9", "global": false }, "bookmark_9": { "description": "Bookmark 10", "global": false } } } |