Advanced Search
Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.
Advanced Search là gì?
Advanced Search là một tiện ích mở rộng Chrome được phát triển bởi Mac Gainor, và tính năng chính của nó là "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.".
Ả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 Advanced Search
Tải xuống các tệp mở rộng Advanced 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
Adds a simple interface to write precise search queries for google, google-scholar, wikipedia, and youtube. After installing, use `Ctrl+Shift+F` to toggle the search window. Try `Tab` and `Shift+Tab` to manipulate inputs. Try `UpArrow` and `DownArrow` to navigate the selected search engine. Use `Enter` to submit your search. If the extension doesn't work immediately, try restarting your browser.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | elgfhefgbaekbebmlmdhildnlhinmnak |
URL Chính Thức | https://chrome.google.com/webstore/detail/advanced-search/elgfhefgbaekbebmlmdhildnlhinmnak |
Mô tả | Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window. |
Kích Thước Tệp | 150 KB |
Số Lần Cài Đặt | 577 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2017-11-05 |
Ngày Phát Hành | 2017-11-05 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Mac Gainor |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mac-s-g/chrome-advanced-search |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Advanced Search", "description": "Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.", "version": "0.1.3", "icons": { "16": "images\/search-icon-16.png", "48": "images\/search-icon-48.png", "128": "images\/search-icon-128.png" }, "browser_action": { "default_title": "Open Advanced Search" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "style\/content.css" ], "js": [ "js\/dependencies\/[email protected]", "js\/content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "activeTab", "storage" ], "web_accessible_resources": [ "style\/content.css", "style\/fonts\/Roboto-Regular.ttf", "images\/google-logo-scaled.png", "images\/wikipedia-logo-scaled.png", "images\/youtube-logo-scaled.png", "images\/google-scholar-logo-scaled.png" ] } |