New Tab Custom URL

New Tab Custom URL changes the default URL of a newly opened tab in chrome :o

O que é New Tab Custom URL?

New Tab Custom URL é uma extensão do Chrome desenvolvida por https://jakegines.in, e sua principal característica é "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão New Tab Custom URL

Baixe arquivos de extensão New Tab Custom URL 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

                        Chrome does not allow the user to customize the landing page upon opening a new tab. Today, that changes - with New Tab Custom URL!

This extension allows the user to seamlessly change the default URL of newly opened chrome tab to a website or a local file.                    

Informações Básicas da Extensão

Nome New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
URL Oficial https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
Descrição New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
Tamanho do Arquivo 9.73 KB
Contagem de Instalações 50
Versão Atual 0.0.0.2
Última Atualização 2021-12-25
Data de Publicação 2021-12-24
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://jakegines.in
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://jakegines.in/archive/New_Tab_Custom_URL
URL da Página de Política de Privacidade https://jakegines.in/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab Custom URL",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "description": "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o",
    "icons": {
        "64": "logo.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "New-Tab-Custom-URL"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}