HTML New Tab

Design your own new tab page with HTML, CSS, and JavaScript!

O que é HTML New Tab?

HTML New Tab é uma extensão do Chrome desenvolvida por Josh Pullen, e sua principal característica é "Design your own new tab page with HTML, CSS, and JavaScript!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão HTML New Tab

Baixe arquivos de extensão HTML 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

                        Are you a web developer looking to build a completely custom new tab page for Chrome? 

With HTML New Tab page, you can write HTML, CSS, and JavaScript code to create your own completely custom new tab page. Whenever you open a new tab, your custom page will appear.                    

Informações Básicas da Extensão

Nome HTML New Tab HTML New Tab
ID ponjalfncfogplhjlmalcbbclbappnaf
URL Oficial https://chromewebstore.google.com/detail/html-new-tab/ponjalfncfogplhjlmalcbbclbappnaf
Descrição Design your own new tab page with HTML, CSS, and JavaScript!
Tamanho do Arquivo 175 KB
Contagem de Instalações 427
Versão Atual 1.1
Última Atualização 2021-01-24
Data de Publicação 2020-12-22
Classificação 4.91/5 Total de 11 Avaliações
Desenvolvedor Josh Pullen
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HTML New Tab",
    "description": "Design your own new tab page with HTML, CSS, and JavaScript!",
    "author": "Josh Pullen",
    "version": "1.1",
    "icons": {
        "16": "images\/icon-16.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}