Instant search keyboard shortcut
Restores some of the keyboard shortcuts available in instant search
Was ist Instant search keyboard shortcut?
Instant search keyboard shortcut ist eine Chrome-Erweiterung, die von Kiren entwickelt wurde, und ihr Hauptmerkmal ist "Restores some of the keyboard shortcuts available in instant search".
Erweiterungsscreenshots
Instant search keyboard shortcut-Erweiterungs-CRX-Datei herunterladen
Laden Sie Instant search keyboard shortcut-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
Missing using tab, esc, arrow-keys and having the familiar blue arrow? Well, look no further! This is an attempt to restore of the keyboard shortcuts of google instant search. If something's not working feel free to send a PR to the GitHub repo.
Grundlegende Informationen zur Erweiterung
Name | Instant search keyboard shortcut |
ID | dfaommhmceombgjkppajcdekakkinpmd |
Offizielle URL | https://chromewebstore.google.com/detail/instant-search-keyboard-s/dfaommhmceombgjkppajcdekakkinpmd |
Beschreibung | Restores some of the keyboard shortcuts available in instant search |
Dateigröße | 50.03 KB |
Installationsanzahl | 33 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2017-08-05 |
Veröffentlichungsdatum | 2017-08-05 |
Entwickler | Kiren |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Kirens/InstantShortcuts |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instant search keyboard shortcut", "description": "Restores some of the keyboard shortcuts available in instant search", "version": "0.1.1", "author": "Kirens", "icons": { "16": "res\/icon16.png", "48": "res\/icon48.png", "128": "res\/icon128.png", "256": "res\/icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/search*", "*:\/\/www.google.se\/search*" ], "js": [ "instant.js" ], "css": [ "instant.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "essentials.css" ], "permissions": [ "https:\/\/www.google.se\/*" ] } |