New tab page bookmarks

Override the new tab page with the bookmarks.

Qu'est-ce que New tab page bookmarks ?

New tab page bookmarks est une extension Chrome développée par https://www.robertoentringer.com, et sa fonction principale est "Override the new tab page with the bookmarks.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension New tab page bookmarks

Téléchargez les fichiers d'extension New tab page bookmarks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
URL Officiel https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
Description Override the new tab page with the bookmarks.
Taille du Fichier 17.56 KB
Nombre d'Installations 29
Version Actuelle 0.3
Dernière Mise à Jour 2019-05-28
Date de Publication 2019-05-28
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://www.robertoentringer.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
URL de la Page d'Aide https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
Langues Prises en Charge 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
}