New tab page bookmarks

Override the new tab page with the bookmarks.

Co to jest New tab page bookmarks?

New tab page bookmarks to rozszerzenie Chrome opracowane przez https://www.robertoentringer.com, a jego główną funkcją jest „Override the new tab page with the bookmarks.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia New tab page bookmarks

Pobierz pliki rozszerzeń New tab page bookmarks 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

                        This extension shows the bookmarks overview when opening a new tab in Chrome.

You can get the full source code of extension on GitHub :

https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers

🚀 New !!!  Support dragging and dropping to change the order.                    

Podstawowe informacje o rozszerzeniu

Nazwa New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
Oficjalny URL https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
Opis Override the new tab page with the bookmarks.
Rozmiar pliku 17.56 KB
Liczba instalacji 29
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2019-05-28
Data Publikacji 2019-05-28
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://www.robertoentringer.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
Adres URL Strony Pomocy https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New tab page bookmarks",
    "description": "Override the new tab page with the bookmarks.",
    "version": "0.3",
    "incognito": "split",
    "chrome_url_overrides": {
        "newtab": "ntp.html"
    },
    "browser_action": {
        "default_title": "Open new tab pabe",
        "default_icon": "icons\/icon32.png"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "src\/icons\/*.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "bookmarks",
        "storage",
        "topSites",
        "chrome:\/\/favicon\/"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}