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 |
官方網址 | 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", "*:\/\/*\/*" ] } |