XKCD New Tab

Every new tab is an XKCD comic!

O que é XKCD New Tab?

XKCD New Tab é uma extensão do Chrome desenvolvida por quiche19, e sua principal característica é "Every new tab is an XKCD comic!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão XKCD New Tab

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

                        Override the new tab page with an XKCD comic.

Displays the a random XKCD comic on the new tab page instead of the original content provided by Chrome.

Contains the title, comic, and hovertext written plainly for easy viewing and enjoyment. 

All comics are sourced from http://xkcd.com/                    

Informações Básicas da Extensão

Nome XKCD New Tab XKCD New Tab
ID kbndmginnhajgnjcncdepimedpgielff
URL Oficial https://chromewebstore.google.com/detail/xkcd-new-tab/kbndmginnhajgnjcncdepimedpgielff
Descrição Every new tab is an XKCD comic!
Tamanho do Arquivo 3.88 KB
Contagem de Instalações 69
Versão Atual 1.0
Última Atualização 2021-08-03
Data de Publicação 2019-08-06
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor quiche19
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": "XKCD New Tab",
    "description": "Every new tab is an XKCD comic!",
    "version": "1.0",
    "incognito": "split",
    "permissions": [
        "https:\/\/xkcd.com\/*"
    ],
    "chrome_url_overrides": {
        "newtab": "xkcd.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}