Fast New Tab Redirect
Redirect the New Tab page to your favorite
Fast New Tab Redirectคืออะไร?
Fast New Tab Redirect เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fumito80 และคุณลักษณะหลักของมันคือ "Redirect the New Tab page to your favorite"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fast New Tab Redirect
ดาวน์โหลดไฟล์ส่วนขยาย 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", "*:\/\/*\/*" ] } |