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.                    

拡張機能の基本情報

名前 Advanced Search Advanced Search
ID elgfhefgbaekbebmlmdhildnlhinmnak
公式URL 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
Eメール [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"
    ]
}