Fast New Tab Redirect
Redirect the New Tab page to your favorite
Co to jest Fast New Tab Redirect?
Fast New Tab Redirect to rozszerzenie Chrome opracowane przez fumito80, a jego główną funkcją jest „Redirect the New Tab page to your favorite”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Fast New Tab Redirect
Pobierz pliki rozszerzeń Fast New Tab Redirect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
It's a minimal implementation for the New Tab page redirection.
The main code is only just 7 lines. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ohnfdmfkceojnmepofncbddpdicdjcoi |
| Oficjalny URL | https://chromewebstore.google.com/detail/fast-new-tab-redirect/ohnfdmfkceojnmepofncbddpdicdjcoi |
| Opis | Redirect the New Tab page to your favorite |
| Rozmiar pliku | 4.14 KB |
| Liczba instalacji | 5,000 |
| Aktualna Wersja | 1.4 |
| Ostatnia Aktualizacja | 2016-08-14 |
| Data Publikacji | 2016-08-14 |
| Ocena | 4.27/5 Łącznie 64 Oceny |
| Deweloper | fumito80 |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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",
"*:\/\/*\/*"
]
} | |