Yahoo Search
See search differently. Set your search engine to Yahoo!
What is Yahoo Search?
Yahoo Search is a Chrome extension developed by https://yahoo.com, and its main feature is "See search differently. Set your search engine to Yahoo!".
Extension Screenshots
Download Yahoo Search Extension CRX File
Download Yahoo Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension automatically sets Yahoo as your default search engine.
Extension Basic Information
Name | Yahoo Search |
ID | jcdpkbfmnobnohjlbopbakpolnchhfgj |
Official URL | https://chromewebstore.google.com/detail/yahoo-search/jcdpkbfmnobnohjlbopbakpolnchhfgj |
Description | See search differently. Set your search engine to Yahoo! |
File Size | 47.51 KB |
Installation Count | 170,823 |
Current Version | 3.0.0 |
Last Updated | 2023-07-10 |
Publish Date | 2020-08-26 |
Rating | 3.36/5 Total 72 Ratings |
Developer | https://yahoo.com |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://legal.yahoo.com/us/en/yahoo/privacy/index.html |
Supported Languages | 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\/*" ] } } |