New Tab As Apps
Causes the new tab to default to the Apps view instead of the google splash view.
New Tab As Appsคืออะไร?
New Tab As Apps เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://holtstrom.com และคุณลักษณะหลักของมันคือ "Causes the new tab to default to the Apps view instead of the google splash view."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย New Tab As Apps
ดาวน์โหลดไฟล์ส่วนขยาย New Tab As Apps ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
While installed, new tabs default to 'chrome://apps/' Updated Dec 2019 because it stopped working. Fixed by changing url to pendingUrl. This extension will always be free and will never have ads. This extension was created in response to Chrome's Feb 2014 removal of the "Enable Instant Extended API" that let you default your new tab to the Apps view. The source code is very simple and is posted online, so you can inspect it for yourself. http://holtstrom.com/michael/blog/post/486/New-Tab-As-Apps-Chrome-Extension.html If you prefer, you can instead use my "Home Button At Top Right" extension (https://chrome.google.com/webstore/detail/home-button-at-top-right/bfejcgpdahgpmgadhgdadfiekmhgnifm) which lets you (via right-click Options) toggle on/off the new-tabs-as-apps feature.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | fmganoiddmbjfgmdpnkmiconhkbibilk |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/new-tab-as-apps/fmganoiddmbjfgmdpnkmiconhkbibilk |
คำอธิบาย | Causes the new tab to default to the Apps view instead of the google splash view. |
ขนาดไฟล์ | 4.75 KB |
จำนวนการติดตั้ง | 749 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2020-11-24 |
วันที่เผยแพร่ | 2019-12-14 |
คะแนน | 4.93/5 รวมทั้งหมด 14 คะแนน |
ผู้พัฒนา | http://holtstrom.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://holtstrom.com/michael/blog/post/486/New-Tab-As-Apps-Chrome-Extension.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "New Tab As Apps", "description": "Causes the new tab to default to the Apps view instead of the google splash view.", "version": "1.1", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |