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 هو إضافة Chrome تم تطويرها بواسطة https://jakegines.in، والميزة الرئيسية لها هي "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة New Tab Custom URL

قم بتنزيل ملفات الامتداد New Tab Custom URL بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
    ]
}