Yahoo Search
See search differently. Set your search engine to Yahoo!
Vad är Yahoo Search?
Yahoo Search är en Chrome-tillägg utvecklad av https://yahoo.com, och dess huvudfunktion är "See search differently. Set your search engine to Yahoo!".
Tilläggsskärmbilder
Ladda ner Yahoo Search-förlängningens CRX-fil
Ladda ner Yahoo Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension automatically sets Yahoo as your default search engine. Grundläggande Information om Tillägg
| Namn | |
| ID | jcdpkbfmnobnohjlbopbakpolnchhfgj |
| Officiell webbadress | https://chromewebstore.google.com/detail/yahoo-search/jcdpkbfmnobnohjlbopbakpolnchhfgj |
| Beskrivning | See search differently. Set your search engine to Yahoo! |
| Filstorlek | 47.51 KB |
| Antal Installationer | 170,823 |
| Aktuell Version | 3.0.0 |
| Senast Uppdaterad | 2023-07-10 |
| Publiceringsdatum | 2020-08-26 |
| Betyg | 3.36/5 Totalt 72 Betyg |
| Utvecklare | https://yahoo.com |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://legal.yahoo.com/us/en/yahoo/privacy/index.html |
| Stödda Språk | 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\/*"
]
}
} | |