New Tab Redirect

Allows a user to provide the URL of the page that loads in a new tab.

什么是New Tab Redirect?

New Tab Redirect是由Jim Schubert开发的Chrome扩展程序,该扩展的主要功能是“Allows a user to provide the URL of the page that loads in a new tab.”。

扩展截图

screenshot
screenshot

下载New Tab Redirect扩展crx文件

下载New Tab Redirect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Allows you to change the new tab page to the New Tab Redirect app page, or a custom URL of your choice!

Choose from chrome's about pages, *NewTab, Extensions, Downloads, History*, a few popular URLs, or provide your own.  Your custom tab can also be a local file, allowing you to create your own new tab page. Saving blank text will cause your new tab to be about:blank.

Files can begin with: file:\\, file://, and file:///

Important: This is not meant to replace your homepage, only new tabs.  If your browser is set to load the New Tab page as your homepage, there may be odd consequences.

Note: Because this extension perform a "redirect", I have no control over address bar highlighting or focus.

***********
Report Bugs
***********

https://github.com/jimschubert/NewTab-Redirect/issues

***********
Legal Stuff
***********

I am not affiliated with Google or Google Chrome.
Google Chrome is a registered trademark of Google, Inc.

The 'Popular Pages' are taken from www.alexa.com/topsites.  I am in no way affiliated with Google, Facebook, Twitter, Yahoo, Wikipedia, Digg, Slashdot or any other page listed here.  These are provided as a convenience to the user of this extension.  By using those pages or any others as a replacement for your new tab, you are still bound by any agreement between you and that site or service.                    

扩展基本信息

名称 New Tab Redirect New Tab Redirect
ID icpgjfneehieebagbmdbhnlpiopdcmna
官方URL https://chromewebstore.google.com/detail/new-tab-redirect/icpgjfneehieebagbmdbhnlpiopdcmna
简介 Allows a user to provide the URL of the page that loads in a new tab.
文件大小 1.52 MB
安装次数 760,666
当前版本 3.1.6
更新时间 2023-10-25
上架时间 2019-07-06
评分 4.04/5 共3134次评分
开发者 Jim Schubert
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jimschubert/newtab-redirect
帮助页面URL https://github.com/jimschubert/newtab-redirect/wiki
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "New Tab Redirect",
    "short_name": "NTR!",
    "description": "Allows a user to provide the URL of the page that loads in a new tab.",
    "version": "3.1.6",
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options.html",
    "chrome_url_overrides": {
        "newtab": "main.html"
    },
    "permissions": [
        "storage",
        "favicon"
    ],
    "host_permissions": [
        "file:\/\/\/",
        "file:\/\/",
        "*:\/\/*"
    ],
    "optional_permissions": [
        "tabs",
        "topSites",
        "management",
        "bookmarks"
    ],
    "icons": {
        "200": "images\/icon200.png",
        "128": "images\/icon128.png",
        "19": "images\/icon19.png"
    },
    "incognito": "split",
    "minimum_chrome_version": "89"
}