New Tab Custom URL

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

New Tab Custom URL क्या है?

New Tab Custom URL https://jakegines.in द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में New Tab Custom URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
आधिकारिक URL https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
विवरण New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
फ़ाइल का आकार 9.73 KB
स्थापना संख्या 50
वर्तमान संस्करण 0.0.0.2
अंतिम अपडेट 2021-12-25
प्रकाशन तिथि 2021-12-24
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://jakegines.in
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://jakegines.in/archive/New_Tab_Custom_URL
गोपनीयता नीति पृष्ठ URL https://jakegines.in/privacy
समर्थित भाषाएँ 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"
    ]
}