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”。
扩展截图
下载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 |
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", "*:\/\/*\/*" ] } |