Yahoo Search
See search differently. Set your search engine to Yahoo!
O que é Yahoo Search?
Yahoo Search é uma extensão do Chrome desenvolvida por https://yahoo.com, e sua principal característica é "See search differently. Set your search engine to Yahoo!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Yahoo Search
Baixe arquivos de extensão Yahoo Search no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension automatically sets Yahoo as your default search engine.
Informações Básicas da Extensão
Nome | Yahoo Search |
ID | jcdpkbfmnobnohjlbopbakpolnchhfgj |
URL Oficial | https://chromewebstore.google.com/detail/yahoo-search/jcdpkbfmnobnohjlbopbakpolnchhfgj |
Descrição | See search differently. Set your search engine to Yahoo! |
Tamanho do Arquivo | 47.51 KB |
Contagem de Instalações | 170,823 |
Versão Atual | 3.0.0 |
Última Atualização | 2023-07-10 |
Data de Publicação | 2020-08-26 |
Classificação | 3.36/5 Total de 72 Avaliações |
Desenvolvedor | https://yahoo.com |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://legal.yahoo.com/us/en/yahoo/privacy/index.html |
Idiomas Suportados | 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\/*" ] } } |