New Tab Custom URL

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

Qu'est-ce que New Tab Custom URL ?

New Tab Custom URL est une extension Chrome développée par https://jakegines.in, et sa fonction principale est "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension New Tab Custom URL

Téléchargez les fichiers d'extension New Tab Custom URL au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
URL Officiel https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
Description New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
Taille du Fichier 9.73 KB
Nombre d'Installations 50
Version Actuelle 0.0.0.2
Dernière Mise à Jour 2021-12-25
Date de Publication 2021-12-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://jakegines.in
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://jakegines.in/archive/New_Tab_Custom_URL
URL de la Page de Politique de Confidentialité https://jakegines.in/privacy
Langues Prises en Charge 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"
    ]
}