New Tab Redirect

Redirects your 'new tab' to an external website.

Qu'est-ce que New Tab Redirect ?

New Tab Redirect est une extension Chrome développée par https://joshuahemphill.com, et sa fonction principale est "Redirects your 'new tab' to an external website.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension New Tab Redirect

Téléchargez les fichiers d'extension New Tab Redirect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom New Tab Redirect New Tab Redirect
ID gjhaadblnhgegfaegeekjlhaciebchfk
URL Officiel https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk
Description Redirects your 'new tab' to an external website.
Taille du Fichier 32.8 KB
Nombre d'Installations 504
Version Actuelle 1.1
Dernière Mise à Jour 2020-11-25
Date de Publication 2020-02-19
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://joshuahemphill.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/josh-hemphill/redirect-newtab-ext
URL de la Page d'Aide https://github.com/josh-hemphill/redirect-newtab-ext
Langues Prises en Charge 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"
    }
}