New Tab Redirect

Redirects your 'new tab' to an external website.

ما هو New Tab Redirect؟

New Tab Redirect هو إضافة Chrome تم تطويرها بواسطة https://joshuahemphill.com، والميزة الرئيسية لها هي "Redirects your 'new tab' to an external website.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        A basic extension to redirect the 'New Tab' to an external site of your choosing.
Make sure you keep seeing your notes or important info when you're browsing.

A minimal extension; no background scripts or unnecessary permissions.

For issues and suggestions open a github issue.

Backend Description:
The extension implements a temporary 'New Tab Page' that when loaded, immediately queries the extension storage for your set redirect page, and then proceeds to redirect.
Removed any background scripts so that it only runs when you initiate it.                    

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

الاسم New Tab Redirect New Tab Redirect
ID gjhaadblnhgegfaegeekjlhaciebchfk
عنوان URL الرسمي https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk
الوصف Redirects your 'new tab' to an external website.
حجم الملف 32.8 KB
عدد التثبيتات 504
النسخة الحالية 1.1
آخر تحديث 2020-11-25
تاريخ النشر 2020-02-19
تقييم 5.00/5 مجموع تقييمات 3
المطور https://joshuahemphill.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/josh-hemphill/redirect-newtab-ext
عنوان صفحة المساعدة https://github.com/josh-hemphill/redirect-newtab-ext
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Redirect",
    "description": "Redirects your 'new tab' to an external website.",
    "version": "1.1",
    "author": "Joshua Hemphill",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "New-Tab Redirect",
        "default_popup": "popup\/index.html"
    },
    "offline_enabled": false,
    "short_name": "Tab Redirect",
    "permissions": [
        "storage"
    ],
    "chrome_url_overrides": {
        "newtab": "tab-redirect\/index.html"
    }
}