Fast New Tab Redirect
Redirect the New Tab page to your favorite
Cos'è Fast New Tab Redirect?
Fast New Tab Redirect è un'estensione di Chrome sviluppata da fumito80, e la sua funzione principale è "Redirect the New Tab page to your favorite".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Fast New Tab Redirect
Scarica i file di estensione Fast New Tab Redirect in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
It's a minimal implementation for the New Tab page redirection. The main code is only just 7 lines.
Informazioni di Base sull'Estensione
Nome | Fast New Tab Redirect |
ID | ohnfdmfkceojnmepofncbddpdicdjcoi |
URL Ufficiale | https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi |
Descrizione | Redirect the New Tab page to your favorite |
Dimensione del File | 4.14 KB |
Conteggio Installazioni | 5,000 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2016-08-14 |
Data di Pubblicazione | 2016-08-14 |
Valutazione | 4.27/5 Totale 64 Valutazioni |
Sviluppatore | fumito80 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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", "*:\/\/*\/*" ] } |