Custom Search Engine

To use, type 'ms' plus keyword for custom search engines & search term into the url bar. (e.g. ms google ).

Custom Search Engineとは何ですか?

Custom Search EngineはRaviによって開発されたChromeの拡張機能で、その主な機能は「To use, type 'ms' plus keyword for custom search engines & search term into the url bar. (e.g. ms google ).」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Custom Search Engine拡張機能のCRXファイルをダウンロード

Custom Search Engine拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        # Description:
-----------------
This add-on allows users to define their own custom search engines and use it from address bar of the browser. You can save the custom engine details to a file and also load it from there. It allows easy sharing of custom defined engines too.

You now can also search using multiple search engines in one go. To use multi-search feature type "ms key1,key2,key3 ".

Summary of Features:
* Search using single search engine (use search key as 'key1')
* Search using multiple search engine (use search key as 'key1,key2')
* Search using single search category (use search key as '@cat1'
* Search using multiple search category (use search key as '@cat1,cat2')
* Search using all search engines (use search key as '@')
* Search using search engines with empty category (use search key as '@@')


New feature added to search based on search engine category. Search engine category should be defined in the preferences page.

To search based in category please type "ms @ ".

If you want to search using all search engines then simply use "ms @ ".

It allows users to use multiple search tags ("{searchTerms}" or "{searchTerms[0]" etc) to define a search engine url.

E.g. Following are a valid custom search engine urls -
* https://www.google.co.in/search?q={searchTerms}
  To use above - "ms google convert CST time to PST"
* https://www.google.co.in/search?q=convert+{searchTerms[0]}+time+to+{searchTerms[1]}
  To use above - "ms google CST PST"

Few other examples:
* ms @food,restaurant pasta
   This will start search for text 'pasta' with search engines under category 'food' and also with search engines under category 'restaurant'.
* ms @ pasta
   This will start search for text 'pasta' with all the search engines defined under preferences.
* ms @@ pasta
   This will start search for text 'pasta' with all search engines with empty category.

# Add-on Preferences:
-----------------------
Please follow below steps to update add-on preferences -

1. Go to "about:addons" from Firefox address bar
2. Click on "Preferences" for "Custom Search Engine" add-on.
3. Click on "Load Popular Search Engines". This will load few of the popular search engines details (e.g. duckduckgo, yahoo, google, bing).
4. Click on "Save Preferences"

Use above steps to also add your own custom engine details.

# Permissions Required:
------------------------
* storage - Save and load Preferences
* raw.githubusercontent.com - Load "popular search engines" from https://raw.githubusercontent.com/rsins/ravi-firefox-custom-search-engines/master/SampleCustomEngines/PopularSearchEngines.txt

# Notes:
---------
If search engine key typed in address bar (after typing ms) points to single custom engine key then no need to type full key for custom search engine.

E.g. If "g" points to single custom engine lets say google then following will have same result-
ms google searchtext
ms g searchtext                    

拡張機能の基本情報

名前 Custom Search Engine Custom Search Engine
ID kelahdmegihhooaelnaahkeggodajdjf
公式URL https://chromewebstore.google.com/detail/custom-search-engine/kelahdmegihhooaelnaahkeggodajdjf
説明 To use, type 'ms' plus keyword for custom search engines & search term into the url bar. (e.g. ms google ).
ファイルサイズ 61.63 KB
インストール数 5,000
現在のバージョン 1.6
最終更新日 2020-12-31
公開日 2018-08-15
評価 4.00/5 合計 9 レビュー
開発者 Ravi
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Custom Search Engine",
    "short_name": "Custom Search Engine",
    "description": "To use, type 'ms' plus keyword for custom search engines & search term into the url bar. (e.g. ms google ).",
    "version": "1.6",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "52.0a1"
        }
    },
    "background": {
        "scripts": [
            "utils.js",
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "ms"
    },
    "permissions": [
        "https:\/\/raw.githubusercontent.com\/rsins\/ravi-firefox-custom-search-engines\/master\/SampleCustomEngines\/PopularSearchEngines.txt",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}