New Tab Custom URL

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

What is New Tab Custom URL?

New Tab Custom URL is a Chrome extension developed by https://jakegines.in, and its main feature is "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o".

Extension Screenshots

screenshot

Download New Tab Custom URL Extension CRX File

Download New Tab Custom URL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
Official URL 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
File Size 9.73 KB
Installation Count 50
Current Version 0.0.0.2
Last Updated 2021-12-25
Publish Date 2021-12-24
Rating 5.00/5 Total 1 Ratings
Developer https://jakegines.in
Email [email protected]
Payment Type free
Extension Website https://jakegines.in/archive/New_Tab_Custom_URL
Privacy Policy Page URL https://jakegines.in/privacy
Supported Languages 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"
    ]
}