Fast New Tab Redirect
Redirect the New Tab page to your favorite
Fast New Tab Redirect là gì?
Fast New Tab Redirect là một tiện ích mở rộng Chrome được phát triển bởi fumito80, và tính năng chính của nó là "Redirect the New Tab page to your favorite".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fast New Tab Redirect
Tải xuống các tệp mở rộng Fast New Tab Redirect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
It's a minimal implementation for the New Tab page redirection. The main code is only just 7 lines.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Fast New Tab Redirect |
ID | ohnfdmfkceojnmepofncbddpdicdjcoi |
URL Chính Thức | https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi |
Mô tả | Redirect the New Tab page to your favorite |
Kích Thước Tệp | 4.14 KB |
Số Lần Cài Đặt | 5,000 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2016-08-14 |
Ngày Phát Hành | 2016-08-14 |
Đánh Giá | 4.27/5 Tổng số 64 Đánh Giá |
Nhà Phát Triển | fumito80 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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", "*:\/\/*\/*" ] } |