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!”。

擴展截圖

screenshot

下載Yahoo Search擴展crx文件

下載Yahoo Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension automatically sets Yahoo as your default search engine.                    

擴展基本資訊

名稱 Yahoo Search Yahoo Search
ID jcdpkbfmnobnohjlbopbakpolnchhfgj
官方網址 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\/*"
        ]
    }
}