New tab page bookmarks

Override the new tab page with the bookmarks.

¿Qué es New tab page bookmarks?

New tab page bookmarks es una extensión de Chrome desarrollada por https://www.robertoentringer.com, y su función principal es "Override the new tab page with the bookmarks.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión New tab page bookmarks

Descarga archivos de extensión New tab page bookmarks en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre New tab page bookmarks New tab page bookmarks
ID jafnapncbaamdiooljaibpebonjpgffe
URL Oficial https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe
Descripción Override the new tab page with the bookmarks.
Tamaño del Archivo 17.56 KB
Cantidad de Instalaciones 29
Versión Actual 0.3
Última Actualización 2019-05-28
Fecha de Publicación 2019-05-28
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://www.robertoentringer.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers
URL de la Página de Ayuda https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues
Idiomas Soportados 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
}