New Tab Custom URL

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

Apa itu New Tab Custom URL?

New Tab Custom URL adalah ekstensi Chrome yang dikembangkan oleh https://jakegines.in, dan fitur utamanya adalah "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi New Tab Custom URL

Unduh file ekstensi New Tab Custom URL dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
URL Resmi https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
Deskripsi New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
Ukuran File 9.73 KB
Jumlah Instalasi 50
Versi Saat Ini 0.0.0.2
Terakhir Diperbarui 2021-12-25
Tanggal Publikasi 2021-12-24
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://jakegines.in
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://jakegines.in/archive/New_Tab_Custom_URL
URL Halaman Kebijakan Privasi https://jakegines.in/privacy
Bahasa yang Didukung 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"
    ]
}