Smart New Tab
A smarter new tab page for everyone
Was ist Smart New Tab?
Smart New Tab ist eine Chrome-Erweiterung, die von https://bewisse.com entwickelt wurde, und ihr Hauptmerkmal ist "A smarter new tab page for everyone".
Erweiterungsscreenshots
Smart New Tab-Erweiterungs-CRX-Datei herunterladen
Laden Sie Smart New Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | ppbaflbhifnaoimjkaogodphnbhdgmfi |
Offizielle URL | https://chrome.google.com/webstore/detail/smart-new-tab/ppbaflbhifnaoimjkaogodphnbhdgmfi |
Beschreibung | A smarter new tab page for everyone |
Dateigröße | 508 KB |
Installationsanzahl | 128 |
Aktuelle Version | 1.1.3 |
Letztes Update | 2021-06-29 |
Veröffentlichungsdatum | 2020-04-26 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://bewisse.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://bewisse.com/newtab/ |
Hilfeseite URL | https://bewisse.com/newtab/ |
URL der Datenschutzrichtlinien-Seite | https://modheader.com/privacy |
Unterstützte Sprachen | 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'" } |