Smart New Tab
A smarter new tab page for everyone
Smart New Tabคืออะไร?
Smart New Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bewisse.com และคุณลักษณะหลักของมันคือ "A smarter new tab page for everyone"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smart New Tab
ดาวน์โหลดไฟล์ส่วนขยาย Smart New Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Smart New Tab gives you quick access to what you need in your New Tab screen. ** Features ** - Top visited sites - Search with clipboard text - Recent searches on Google - Recently closed tabs across all devices - Recent browse history - Apps - Weather - Automatically update background picture - Add more shortcut ** Version 1.1.2 ** - Improve the initial experience ** Version 1.1.1 ** - Hide empty app bar and make list collapsible ** Version 1.1.0 ** - Make most permissions optional. User can selectively decide which permission to grant in the extension. Official website: https://bewisse.com/newtab/ Source code: https://github.com/bewisse/newtab
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ppbaflbhifnaoimjkaogodphnbhdgmfi |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/smart-new-tab/ppbaflbhifnaoimjkaogodphnbhdgmfi |
คำอธิบาย | A smarter new tab page for everyone |
ขนาดไฟล์ | 508 KB |
จำนวนการติดตั้ง | 128 |
เวอร์ชันปัจจุบัน | 1.1.3 |
อัปเดตครั้งล่าสุด | 2021-06-29 |
วันที่เผยแพร่ | 2020-04-26 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://bewisse.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://bewisse.com/newtab/ |
URL หน้าช่วยเหลือ | https://bewisse.com/newtab/ |
URL หน้านโยบายความเป็นส่วนตัว | https://modheader.com/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Smart New Tab", "version": "1.1.3", "description": "A smarter new tab page for everyone", "author": "[email protected]", "manifest_version": 2, "icons": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png", "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "48": "icons\/48.png", "64": "icons\/64.png", "128": "icons\/128.png" }, "default_popup": "popup\/popup.html" }, "permissions": [ "chrome:\/\/favicon\/", "https:\/\/www.google.com\/*", "storage" ], "optional_permissions": [ "tabs", "clipboardRead", "topSites", "history", "management", "sessions" ], "chrome_url_overrides": { "newtab": "pages\/newtab.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |