New Tab Redirect

Redirects your 'new tab' to an external website.

Co to jest New Tab Redirect?

New Tab Redirect to rozszerzenie Chrome opracowane przez https://joshuahemphill.com, a jego główną funkcją jest „Redirects your 'new tab' to an external website.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia New Tab Redirect

Pobierz pliki rozszerzeń New Tab Redirect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa New Tab Redirect New Tab Redirect
ID gjhaadblnhgegfaegeekjlhaciebchfk
Oficjalny URL https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk
Opis Redirects your 'new tab' to an external website.
Rozmiar pliku 32.8 KB
Liczba instalacji 504
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-11-25
Data Publikacji 2020-02-19
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://joshuahemphill.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/josh-hemphill/redirect-newtab-ext
Adres URL Strony Pomocy https://github.com/josh-hemphill/redirect-newtab-ext
Obsługiwane Języki 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"
    }
}