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?
Advanced Search是由Mac Gainor開發的Chrome擴展程式,該擴展的主要功能是“Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window.”。
擴展截圖
下載Advanced Search擴展crx文件
下載Advanced Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | elgfhefgbaekbebmlmdhildnlhinmnak |
| 官方網址 | https://chrome.google.com/webstore/detail/advanced-search/elgfhefgbaekbebmlmdhildnlhinmnak |
| 簡介 | Adds a simple interface to write precise google search queries. After installing, use Ctrl+Shift+F to toggle the search window. |
| 檔案大小 | 150 KB |
| 安裝次數 | 577 |
| 目前版本 | 0.1.3 |
| 更新時間 | 2017-11-05 |
| 上架時間 | 2017-11-05 |
| 評分 | 4.50/5 共 8 次評分 |
| 開發者 | Mac Gainor |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/mac-s-g/chrome-advanced-search |
| 支援的語言 | 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"
]
} | |