Fast New Tab Redirect
Redirect the New Tab page to your favorite
What is Fast New Tab Redirect?
Fast New Tab Redirect is a Chrome extension developed by fumito80, and its main feature is "Redirect the New Tab page to your favorite".
Extension Screenshots
Download Fast New Tab Redirect Extension CRX File
Download Fast New Tab Redirect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
It's a minimal implementation for the New Tab page redirection. The main code is only just 7 lines.
Extension Basic Information
Name | Fast New Tab Redirect |
ID | ohnfdmfkceojnmepofncbddpdicdjcoi |
Official URL | https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi |
Description | Redirect the New Tab page to your favorite |
File Size | 4.14 KB |
Installation Count | 5,000 |
Current Version | 1.4 |
Last Updated | 2016-08-14 |
Publish Date | 2016-08-14 |
Rating | 4.27/5 Total 64 Ratings |
Developer | fumito80 |
[email protected] | |
Payment Type | free |
Supported Languages | 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", "*:\/\/*\/*" ] } |