Search and New Tab by Yahoo

This extension sets your search engine to Yahoo and customizes your new tab page with beautiful photos and access to your top sites

Search and New Tab by Yahoo란 무엇입니까?

Search and New Tab by Yahoo은(는) https://yahoo.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension sets your search engine to Yahoo and customizes your new tab page with beautiful photos and access to your top sites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Search and New Tab by Yahoo 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This add-on sets your default search engine to Yahoo and brings a fresh look to your new tab page. Get powerful search results, gorgeous Flickr photos and quick access to your top sites each time you open a new tab!                    

확장 프로그램 기본 정보

이름 Search and New Tab by Yahoo Search and New Tab by Yahoo
ID lannejjfkoabhaaeapeiemfefgccjjik
공식 URL https://chromewebstore.google.com/detail/search-and-new-tab-by-yah/lannejjfkoabhaaeapeiemfefgccjjik
설명 This extension sets your search engine to Yahoo and customizes your new tab page with beautiful photos and access to your top sites
파일 크기 2.49 MB
설치 횟수 12,649
현재 버전 3.0.2
최근 업데이트 2023-09-23
출시 날짜 2020-08-26
평점 4.00/5 총 12 개의 평점
개발자 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": "__MSG_newtab_chrome_extension_name__",
    "description": "__MSG_newtab_chrome_extension_description__",
    "version": "3.0.2",
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "permissions": [
        "declarativeNetRequestWithHostAccess",
        "tabs",
        "topSites",
        "cookies",
        "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
        }
    ]
}