Instant search keyboard shortcut
Restores some of the keyboard shortcuts available in instant search
What is Instant search keyboard shortcut?
Instant search keyboard shortcut is a Chrome extension developed by Kiren, and its main feature is "Restores some of the keyboard shortcuts available in instant search".
Extension Screenshots
Download Instant search keyboard shortcut Extension CRX File
Download Instant search keyboard shortcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Instant search keyboard shortcut |
ID | dfaommhmceombgjkppajcdekakkinpmd |
Official URL | https://chromewebstore.google.com/detail/instant-search-keyboard-s/dfaommhmceombgjkppajcdekakkinpmd |
Description | Restores some of the keyboard shortcuts available in instant search |
File Size | 50.03 KB |
Installation Count | 33 |
Current Version | 0.1.1 |
Last Updated | 2017-08-05 |
Publish Date | 2017-08-05 |
Developer | Kiren |
Payment Type | free |
Extension Website | https://github.com/Kirens/InstantShortcuts |
Supported Languages | 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\/*" ] } |