Custom Chrome Shortcut Manager
To use, type 'go' into the search bar.
Was ist Custom Chrome Shortcut Manager?
Custom Chrome Shortcut Manager ist eine Chrome-Erweiterung, die von https://swsmith.cc entwickelt wurde, und ihr Hauptmerkmal ist "To use, type 'go' into the search bar.".
Erweiterungsscreenshots
Custom Chrome Shortcut Manager-Erweiterungs-CRX-Datei herunterladen
Laden Sie Custom Chrome Shortcut Manager-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
**New in Version 1.1.0** Ability to remove individual shortcuts! Define shortcuts to enter in the search bar! This makes getting to your favorite sites a breeze. Simply add an alias to url pairing in the configuration window, then type 'go' in the search bar. Press tab and enter the alias of the website you want to visit. You're then directed the website. As an added bonus, Omnibox Alias does math. Simply type in a math expression to the search box and it'll suggest the rest.
Grundlegende Informationen zur Erweiterung
Name | Custom Chrome Shortcut Manager |
ID | ijihchgjhagfhdkhagnmlebpepjlecml |
Offizielle URL | https://chromewebstore.google.com/detail/custom-chrome-shortcut-ma/ijihchgjhagfhdkhagnmlebpepjlecml |
Beschreibung | To use, type 'go' into the search bar. |
Dateigröße | 202 KB |
Installationsanzahl | 1,913 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2022-05-25 |
Veröffentlichungsdatum | 2020-05-04 |
Bewertung | 3.23/5 Insgesamt 13 Bewertungen |
Entwickler | https://swsmith.cc |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://sean-smith.github.io/chromeshortcuts/index.html |
Hilfeseite URL | https://github.com/sean-smith/chrome_shortcuts/issues |
URL der Datenschutzrichtlinien-Seite | https://seanssmith.net/copyright.html |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Custom Chrome Shortcut Manager", "short_name": "Omnibox Alias", "description": "To use, type 'go' into the search bar.", "version": "1.1.1", "permissions": [ "storage", "activeTab" ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_title": "Omnibox Alias", "default_icon": "img\/terminal_16x16.png", "default_popup": "popup.html" }, "omnibox": { "keyword": "go" }, "icons": { "16": "img\/terminal_16x16.png", "48": "img\/terminal_48x48.png", "128": "img\/terminal_128x128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'" } |