New Tab Custom URL

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

Wat is New Tab Custom URL?

New Tab Custom URL is een Chrome-extensie ontwikkeld door https://jakegines.in, en de belangrijkste functie is "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie New Tab Custom URL

Download New Tab Custom URL-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
Officiële URL https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
Beschrijving New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
Bestandsgrootte 9.73 KB
Aantal Installaties 50
Huidige Versie 0.0.0.2
Laatst Bijgewerkt 2021-12-25
Publicatiedatum 2021-12-24
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://jakegines.in
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://jakegines.in/archive/New_Tab_Custom_URL
URL van de Privacybeleid Pagina https://jakegines.in/privacy
Ondersteunde Talen 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"
    ]
}