Smart New Tab
A smarter new tab page for everyone
Qu'est-ce que Smart New Tab ?
Smart New Tab est une extension Chrome développée par https://bewisse.com, et sa fonction principale est "A smarter new tab page for everyone".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Smart New Tab
Téléchargez les fichiers d'extension Smart New Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | ppbaflbhifnaoimjkaogodphnbhdgmfi |
URL Officiel | https://chrome.google.com/webstore/detail/smart-new-tab/ppbaflbhifnaoimjkaogodphnbhdgmfi |
Description | A smarter new tab page for everyone |
Taille du Fichier | 508 KB |
Nombre d'Installations | 128 |
Version Actuelle | 1.1.3 |
Dernière Mise à Jour | 2021-06-29 |
Date de Publication | 2020-04-26 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://bewisse.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://bewisse.com/newtab/ |
URL de la Page d'Aide | https://bewisse.com/newtab/ |
URL de la Page de Politique de Confidentialité | https://modheader.com/privacy |
Langues Prises en Charge | 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'" } |