Yahoo Search
See search differently. Set your search engine to Yahoo!
Yahoo Searchとは何ですか?
Yahoo Searchはhttps://yahoo.comによって開発されたChromeの拡張機能で、その主な機能は「See search differently. Set your search engine to Yahoo!」です。
拡張機能のスクリーンショット
Yahoo Search拡張機能のCRXファイルをダウンロード
Yahoo Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension automatically sets Yahoo as your default search engine. 拡張機能の基本情報
| 名前 | |
| ID | jcdpkbfmnobnohjlbopbakpolnchhfgj |
| 公式URL | https://chromewebstore.google.com/detail/yahoo-search/jcdpkbfmnobnohjlbopbakpolnchhfgj |
| 説明 | See search differently. Set your search engine to Yahoo! |
| ファイルサイズ | 47.51 KB |
| インストール数 | 170,823 |
| 現在のバージョン | 3.0.0 |
| 最終更新日 | 2023-07-10 |
| 公開日 | 2020-08-26 |
| 評価 | 3.36/5 合計 72 レビュー |
| 開発者 | https://yahoo.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://legal.yahoo.com/us/en/yahoo/privacy/index.html |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"default_locale": "en",
"chrome_settings_overrides": {
"search_provider": {
"name": "Yahoo Partner",
"keyword": "Yahoo",
"search_url": "https:\/\/search.yahoo.com\/search?p={searchTerms}&manifest=1",
"favicon_url": "https:\/\/www.yahoo.com\/favicon.ico",
"suggest_url": "https:\/\/search.yahoo.com\/sugg\/ie?output=fxjson&command={searchTerms}&nResults=10",
"encoding": "UTF-8",
"is_default": true
}
},
"manifest_version": 3,
"name": "Yahoo Search",
"description": "See search differently. Set your search engine to Yahoo!",
"version": "3.0.0",
"permissions": [
"declarativeNetRequestWithHostAccess",
"tabs",
"storage",
"alarms"
],
"host_permissions": [
"*:\/\/*.yahoo.com\/"
],
"icons": {
"128": "icons\/Y_NT128.png"
},
"action": {
"default_icon": {
"64": "icons\/Y_NT64.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.yahoo.com\/*"
],
"js": [
"notifyPresence.js"
],
"all_frames": true
},
{
"matches": [
"*:\/\/*.mail.yahoo.com\/*"
],
"js": [
"detectWiderMail.js"
]
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.mail.yahoo.com\/*"
]
}
} | |