Yahoo Search
See search differently. Set your search engine to Yahoo!
Co to jest Yahoo Search?
Yahoo Search to rozszerzenie Chrome opracowane przez https://yahoo.com, a jego główną funkcją jest „See search differently. Set your search engine to Yahoo!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Yahoo Search
Pobierz pliki rozszerzeń Yahoo Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension automatically sets Yahoo as your default search engine.
Podstawowe informacje o rozszerzeniu
Nazwa | Yahoo Search |
ID | jcdpkbfmnobnohjlbopbakpolnchhfgj |
Oficjalny URL | https://chromewebstore.google.com/detail/yahoo-search/jcdpkbfmnobnohjlbopbakpolnchhfgj |
Opis | See search differently. Set your search engine to Yahoo! |
Rozmiar pliku | 47.51 KB |
Liczba instalacji | 170,823 |
Aktualna Wersja | 3.0.0 |
Ostatnia Aktualizacja | 2023-07-10 |
Data Publikacji | 2020-08-26 |
Ocena | 3.36/5 Łącznie 72 Oceny |
Deweloper | https://yahoo.com |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://legal.yahoo.com/us/en/yahoo/privacy/index.html |
Obsługiwane Języki | 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\/*" ] } } |