New Tab Custom URL

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

Hvad er New Tab Custom URL?

New Tab Custom URL er en Chrome-udvidelse udviklet af https://jakegines.in, og dens hovedfunktion er "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o".

Udvidelsesskærmbilleder

screenshot

Download New Tab Custom URL-udvidelses-CRX-fil

Download New Tab Custom URL-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
Officiel URL https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
Beskrivelse New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
Filstørrelse 9.73 KB
Antal Installationer 50
Nuværende Version 0.0.0.2
Senest Opdateret 2021-12-25
Udgivelsesdato 2021-12-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://jakegines.in
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://jakegines.in/archive/New_Tab_Custom_URL
URL til Fortrolighedspolitik Side https://jakegines.in/privacy
Understøttede Sprog 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"
    ]
}