New Tab Redirect

Redirects your 'new tab' to an external website.

¿Qué es New Tab Redirect?

New Tab Redirect es una extensión de Chrome desarrollada por https://joshuahemphill.com, y su función principal es "Redirects your 'new tab' to an external website.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión New Tab Redirect

Descarga archivos de extensión New Tab Redirect en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre New Tab Redirect New Tab Redirect
ID gjhaadblnhgegfaegeekjlhaciebchfk
URL Oficial https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk
Descripción Redirects your 'new tab' to an external website.
Tamaño del Archivo 32.8 KB
Cantidad de Instalaciones 504
Versión Actual 1.1
Última Actualización 2020-11-25
Fecha de Publicación 2020-02-19
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://joshuahemphill.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/josh-hemphill/redirect-newtab-ext
URL de la Página de Ayuda https://github.com/josh-hemphill/redirect-newtab-ext
Idiomas Soportados 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"
    }
}