Fast New Tab Redirect

Redirect the New Tab page to your favorite

Fast New Tab Redirect란 무엇입니까?

Fast New Tab Redirect은(는) fumito80에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirect the New Tab page to your favorite"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fast New Tab Redirect 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It's a minimal implementation for the New Tab page redirection.

The main code is only just 7 lines.                    

확장 프로그램 기본 정보

이름 Fast New Tab Redirect Fast New Tab Redirect
ID ohnfdmfkceojnmepofncbddpdicdjcoi
공식 URL https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi
설명 Redirect the New Tab page to your favorite
파일 크기 4.14 KB
설치 횟수 5,000
현재 버전 1.4
최근 업데이트 2016-08-14
출시 날짜 2016-08-14
평점 4.27/5 총 64 개의 평점
개발자 fumito80
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fast New Tab Redirect",
    "description": "Redirect the New Tab page to your favorite",
    "version": "1.4",
    "options_page": "options.html",
    "chrome_url_overrides": {
        "newtab": "dummy.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ]
}