Smart New Tab
A smarter new tab page for everyone
Smart New Tab là gì?
Smart New Tab là một tiện ích mở rộng Chrome được phát triển bởi https://bewisse.com, và tính năng chính của nó là "A smarter new tab page for everyone".
Ả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 Smart New Tab
Tải xuống các tệp mở rộng Smart New Tab 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ppbaflbhifnaoimjkaogodphnbhdgmfi |
URL Chính Thức | https://chrome.google.com/webstore/detail/smart-new-tab/ppbaflbhifnaoimjkaogodphnbhdgmfi |
Mô tả | A smarter new tab page for everyone |
Kích Thước Tệp | 508 KB |
Số Lần Cài Đặt | 128 |
Phiên Bản Hiện Tại | 1.1.3 |
Cập Nhật Lần Cuối | 2021-06-29 |
Ngày Phát Hành | 2020-04-26 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://bewisse.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://bewisse.com/newtab/ |
URL Trang Trợ Giúp | https://bewisse.com/newtab/ |
URL Trang Chính Sách Bảo Mật | https://modheader.com/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |