Smart New Tab

A smarter new tab page for everyone

O que é Smart New Tab?

Smart New Tab é uma extensão do Chrome desenvolvida por https://bewisse.com, e sua principal característica é "A smarter new tab page for everyone".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Smart New Tab

Baixe arquivos de extensão Smart New Tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Smart New Tab Smart New Tab
ID ppbaflbhifnaoimjkaogodphnbhdgmfi
URL Oficial https://chrome.google.com/webstore/detail/smart-new-tab/ppbaflbhifnaoimjkaogodphnbhdgmfi
Descrição A smarter new tab page for everyone
Tamanho do Arquivo 508 KB
Contagem de Instalações 128
Versão Atual 1.1.3
Última Atualização 2021-06-29
Data de Publicação 2020-04-26
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://bewisse.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://bewisse.com/newtab/
URL da Página de Ajuda https://bewisse.com/newtab/
URL da Página de Política de Privacidade https://modheader.com/privacy
Idiomas Suportados 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'"
}