Yahoo Search

See search differently. Set your search engine to Yahoo!

Cos'è Yahoo Search?

Yahoo Search è un'estensione di Chrome sviluppata da https://yahoo.com, e la sua funzione principale è "See search differently. Set your search engine to Yahoo!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Yahoo Search

Scarica i file di estensione Yahoo Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension automatically sets Yahoo as your default search engine.                    

Informazioni di Base sull'Estensione

Nome Yahoo Search Yahoo Search
ID jcdpkbfmnobnohjlbopbakpolnchhfgj
URL Ufficiale https://chromewebstore.google.com/detail/yahoo-search/jcdpkbfmnobnohjlbopbakpolnchhfgj
Descrizione See search differently. Set your search engine to Yahoo!
Dimensione del File 47.51 KB
Conteggio Installazioni 170,823
Versione Corrente 3.0.0
Ultimo Aggiornamento 2023-07-10
Data di Pubblicazione 2020-08-26
Valutazione 3.36/5 Totale 72 Valutazioni
Sviluppatore https://yahoo.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://legal.yahoo.com/us/en/yahoo/privacy/index.html
Lingue Supportate 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\/*"
        ]
    }
}