Fast New Tab Redirect
Redirect the New Tab page to your favorite
Wat is Fast New Tab Redirect?
Fast New Tab Redirect is een Chrome-extensie ontwikkeld door fumito80, en de belangrijkste functie is "Redirect the New Tab page to your favorite".
Extensie Screenshots
Download het CRX-bestand van de extensie Fast New Tab Redirect
Download Fast New Tab Redirect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
It's a minimal implementation for the New Tab page redirection. The main code is only just 7 lines.
Basisinformatie over de Extensie
Naam | Fast New Tab Redirect |
ID | ohnfdmfkceojnmepofncbddpdicdjcoi |
Officiële URL | https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi |
Beschrijving | Redirect the New Tab page to your favorite |
Bestandsgrootte | 4.14 KB |
Aantal Installaties | 5,000 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2016-08-14 |
Publicatiedatum | 2016-08-14 |
Beoordeling | 4.27/5 Totaal 64 Beoordelingen |
Ontwikkelaar | fumito80 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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", "*:\/\/*\/*" ] } |