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.
扩展基本信息
名称 | Yahoo Search |
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 |
电子邮箱 | [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\/*" ] } } |