Quick Search
Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.
Quick Search là gì?
Quick Search là một tiện ích mở rộng Chrome được phát triển bởi https://serdar.work, và tính năng chính của nó là "Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Quick Search
Tải xuống các tệp mở rộng Quick Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Quick Search |
ID | chgmjmpmfefgaiogdnnjbfcbgcflofgi |
URL Chính Thức | https://chromewebstore.google.com/detail/quick-search/chgmjmpmfefgaiogdnnjbfcbgcflofgi |
Mô tả | Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard. |
Kích Thước Tệp | 10.28 KB |
Số Lần Cài Đặt | 887 |
Phiên Bản Hiện Tại | 2.0.2 |
Cập Nhật Lần Cuối | 2022-05-08 |
Ngày Phát Hành | 2017-05-28 |
Đánh Giá | 3.67/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | https://serdar.work |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://serdar.work |
URL Trang Chính Sách Bảo Mật | https://serdar.work/chrome-extensions/privacy-policy.html |
Ngôn Ngữ Được Hỗ Trợ | 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" } |