Fast New Tab Redirect

Redirect the New Tab page to your favorite

ما هو Fast New Tab Redirect؟

Fast New Tab Redirect هو إضافة Chrome تم تطويرها بواسطة fumito80، والميزة الرئيسية لها هي "Redirect the New Tab page to your favorite".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Fast New Tab Redirect

قم بتنزيل ملفات الامتداد Fast New Tab Redirect بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        It's a minimal implementation for the New Tab page redirection.

The main code is only just 7 lines.                    

معلومات أساسية عن التمديد

الاسم Fast New Tab Redirect Fast New Tab Redirect
ID ohnfdmfkceojnmepofncbddpdicdjcoi
عنوان URL الرسمي https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi
الوصف Redirect the New Tab page to your favorite
حجم الملف 4.14 KB
عدد التثبيتات 5,000
النسخة الحالية 1.4
آخر تحديث 2016-08-14
تاريخ النشر 2016-08-14
تقييم 4.27/5 مجموع تقييمات 64
المطور fumito80
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fast New Tab Redirect",
    "description": "Redirect the New Tab page to your favorite",
    "version": "1.4",
    "options_page": "options.html",
    "chrome_url_overrides": {
        "newtab": "dummy.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ]
}