New tab page bookmarks

Override the new tab page with the bookmarks.

Was ist New tab page bookmarks?

New tab page bookmarks ist eine Chrome-Erweiterung, die von https://www.robertoentringer.com entwickelt wurde, und ihr Hauptmerkmal ist "Override the new tab page with the bookmarks.".

Erweiterungsscreenshots

screenshot

New tab page bookmarks-Erweiterungs-CRX-Datei herunterladen

Laden Sie New tab page bookmarks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
Offizielle URL https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
Beschreibung Override the new tab page with the bookmarks.
Dateigröße 17.56 KB
Installationsanzahl 29
Aktuelle Version 0.3
Letztes Update 2019-05-28
Veröffentlichungsdatum 2019-05-28
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://www.robertoentringer.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
Hilfeseite URL https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
Unterstützte Sprachen 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
}