Fast New Tab Redirect

Redirect the New Tab page to your favorite

Vad är Fast New Tab Redirect?

Fast New Tab Redirect är en Chrome-tillägg utvecklad av fumito80, och dess huvudfunktion är "Redirect the New Tab page to your favorite".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Fast New Tab Redirect-förlängningens CRX-fil

Ladda ner Fast New Tab Redirect-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        It's a minimal implementation for the New Tab page redirection.

The main code is only just 7 lines.                    

Grundläggande Information om Tillägg

Namn Fast New Tab Redirect Fast New Tab Redirect
ID ohnfdmfkceojnmepofncbddpdicdjcoi
Officiell webbadress https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi
Beskrivning Redirect the New Tab page to your favorite
Filstorlek 4.14 KB
Antal Installationer 5,000
Aktuell Version 1.4
Senast Uppdaterad 2016-08-14
Publiceringsdatum 2016-08-14
Betyg 4.27/5 Totalt 64 Betyg
Utvecklare fumito80
E-post [email protected]
Betalningssätt free
Stödda Språk 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",
        "*:\/\/*\/*"
    ]
}