New Tab Gallery

Use one of many unique new tab page experiences brought to you by New Tab Gallery.

¿Qué es New Tab Gallery?

New Tab Gallery es una extensión de Chrome desarrollada por MY BACKGROUNDS, y su función principal es "Use one of many unique new tab page experiences brought to you by New Tab Gallery.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión New Tab Gallery

Descarga archivos de extensión New Tab Gallery 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

                        With this extension, you can change your tab page with hundreds of images ranging from pets to cars and everything in between! Once you download this extension, you can pick your images and then change whenever you want!

If you have any questions or feedback support can be reached at [email protected]

With our extension, you get:
1:  A high-res new tab experience 
2:  Simple, direct search from the new tab page
3:  We are search and ad supported!  Thanks for your support...                    

Información Básica de la Extensión

Nombre New Tab Gallery New Tab Gallery
ID iehpokoanfbgokldaehoehokmdandjgb
URL Oficial https://chrome.google.com/webstore/detail/new-tab-gallery/iehpokoanfbgokldaehoehokmdandjgb
Descripción Use one of many unique new tab page experiences brought to you by New Tab Gallery.
Tamaño del Archivo 30.96 KB
Cantidad de Instalaciones 31
Versión Actual 0.1
Última Actualización 2020-08-07
Fecha de Publicación 2020-08-07
Desarrollador MY BACKGROUNDS
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda http://newtabgallery.com/support
URL de la Página de Política de Privacidad http://newtabgallery.com/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Gallery",
    "version": "0.1",
    "description": "Use one of many unique new tab page experiences brought to you by New Tab Gallery.",
    "author": "New Tab Gallery",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png"
        },
        "default_title": "New Tab Gallery"
    },
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.newtabgallery.com\/*"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/home.newtabgallery.com\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ]
}