New Tab Redirect

Redirects your 'new tab' to an external website.

什么是New Tab Redirect?

New Tab Redirect是由https://joshuahemphill.com开发的Chrome扩展程序,该扩展的主要功能是“Redirects your 'new tab' to an external website.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载New Tab Redirect扩展crx文件

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

扩展使用说明

                        A basic extension to redirect the 'New Tab' to an external site of your choosing.
Make sure you keep seeing your notes or important info when you're browsing.

A minimal extension; no background scripts or unnecessary permissions.

For issues and suggestions open a github issue.

Backend Description:
The extension implements a temporary 'New Tab Page' that when loaded, immediately queries the extension storage for your set redirect page, and then proceeds to redirect.
Removed any background scripts so that it only runs when you initiate it.                    

扩展基本信息

名称 New Tab Redirect New Tab Redirect
ID gjhaadblnhgegfaegeekjlhaciebchfk
官方URL https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk
简介 Redirects your 'new tab' to an external website.
文件大小 32.8 KB
安装次数 504
当前版本 1.1
更新时间 2020-11-25
上架时间 2020-02-19
评分 5.00/5 共3次评分
开发者 https://joshuahemphill.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/josh-hemphill/redirect-newtab-ext
帮助页面URL https://github.com/josh-hemphill/redirect-newtab-ext
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Redirect",
    "description": "Redirects your 'new tab' to an external website.",
    "version": "1.1",
    "author": "Joshua Hemphill",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "New-Tab Redirect",
        "default_popup": "popup\/index.html"
    },
    "offline_enabled": false,
    "short_name": "Tab Redirect",
    "permissions": [
        "storage"
    ],
    "chrome_url_overrides": {
        "newtab": "tab-redirect\/index.html"
    }
}