Quick Search
Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.
Was ist Quick Search?
Quick Search ist eine Chrome-Erweiterung, die von https://serdar.work entwickelt wurde, und ihr Hauptmerkmal ist "Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.".
Erweiterungsscreenshots
Quick Search-Erweiterungs-CRX-Datei herunterladen
Laden Sie Quick Search-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
Select a text and hit:
- Alt+S to search on Google
- Alt+W to search on Wikipedia
- Alt+T to search on Twitter
- Alt+A to search on Amazon
- You can change the shortcuts. Use "Keyboard shortcuts" in the Chrome extension settings to do that.
- Click on the extension icon to enable / disable the extension temporarily.
- Google Translate search is removed in Version 2.0, due to Chrome's maximum shortcut limit of 4. It will be added soon with the context menu search feature.
- Customizing the websites to search will be possible with the options feature in the next version.
- This extension does not mess with your data. You can view the full source code of this extension at GitHub: https://github.com/serd/quick-search Grundlegende Informationen zur Erweiterung
| Name | |
| ID | chgmjmpmfefgaiogdnnjbfcbgcflofgi |
| Offizielle URL | https://chromewebstore.google.com/detail/quick-search/chgmjmpmfefgaiogdnnjbfcbgcflofgi |
| Beschreibung | Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard. |
| Dateigröße | 10.28 KB |
| Installationsanzahl | 887 |
| Aktuelle Version | 2.0.2 |
| Letztes Update | 2022-05-08 |
| Veröffentlichungsdatum | 2017-05-28 |
| Bewertung | 3.67/5 Insgesamt 9 Bewertungen |
| Entwickler | https://serdar.work |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://serdar.work |
| URL der Datenschutzrichtlinien-Seite | https://serdar.work/chrome-extensions/privacy-policy.html |
| Unterstützte Sprachen | en,tr |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"version": "2.0.2",
"manifest_version": 2,
"description": "__MSG_extDescription__",
"icons": {
"128": "icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": [],
"commands": {
"search-google": {
"description": "Search Google",
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
}
},
"search-wikipedia": {
"description": "Search Wikipedia",
"suggested_key": {
"default": "Alt+W",
"mac": "Alt+W"
}
},
"search-amazon": {
"description": "Search Amazon",
"suggested_key": {
"default": "Alt+A",
"mac": "Alt+A"
}
},
"search-twitter": {
"description": "Search Twitter",
"suggested_key": {
"default": "Alt+T",
"mac": "Alt+T"
}
}
},
"permissions": [
"activeTab"
],
"homepage_url": "https:\/\/serdar.work"
} | |