New Tab URL

Use a custom URL as the New Tab page without losing address bar focus

Co to jest New Tab URL?

New Tab URL to rozszerzenie Chrome opracowane przez Matthias Vogt, a jego główną funkcją jest „Use a custom URL as the New Tab page without losing address bar focus”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia New Tab URL

Pobierz pliki rozszerzeń New Tab URL 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

                        Choose a custom URL to be displayed on the New Tab page.
The address bar stays focused when opening a new tab.                    

Podstawowe informacje o rozszerzeniu

Nazwa New Tab URL New Tab URL
ID fjmejipbaegkajpfkghaapfhdempldpd
Oficjalny URL https://chromewebstore.google.com/detail/new-tab-url/fjmejipbaegkajpfkghaapfhdempldpd
Opis Use a custom URL as the New Tab page without losing address bar focus
Rozmiar pliku 488 KB
Liczba instalacji 430
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2022-10-10
Data Publikacji 2016-04-17
Ocena 4.54/5 Łącznie 13 Oceny
Deweloper Matthias Vogt
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/matthias-vogt/new-tab-url
Adres URL Strony Pomocy https://github.com/matthias-vogt/new-tab-url
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab URL",
    "description": "Use a custom URL as the New Tab page without losing address bar focus",
    "version": "0.1.2",
    "chrome_url_overrides": {
        "newtab": "new-tab.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_popup": "options.html",
        "default_title": "New Tab URL"
    },
    "permissions": [
        "storage",
        "file:\/\/\/*"
    ],
    "manifest_version": 2
}