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ファイルをダウンロード

Fast New Tab Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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",
        "*:\/\/*\/*"
    ]
}