ChromeBackground

Add your own custom background to Google.com

¿Qué es ChromeBackground?

ChromeBackground es una extensión de Chrome desarrollada por Unknown, y su función principal es "Add your own custom background to Google.com".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ChromeBackground

Descarga archivos de extensión ChromeBackground 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

                        Add custom background to https://www.gooogle.com/*                    

Información Básica de la Extensión

Nombre ChromeBackground ChromeBackground
ID hiohpginbllenbjfohemjliffknnafnn
URL Oficial https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn
Descripción Add your own custom background to Google.com
Tamaño del Archivo 1.44 MB
Cantidad de Instalaciones 18
Versión Actual 1.0.0
Última Actualización 2021-11-16
Fecha de Publicación 2021-11-15
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Unknown
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/seanjyjy/chrome-bg
URL de la Página de Ayuda https://github.com/seanjyjy/chrome-bg
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeBackground",
    "description": "Add your own custom background to Google.com",
    "version": "1.0.0",
    "author": "Sean Lum",
    "icons": {
        "16": ".\/images\/background16.png",
        "48": ".\/images\/background48.png",
        "128": ".\/images\/background128.png"
    },
    "page_action": {
        "default_icon": ".\/images\/background16.png",
        "default_popup": "popup.html",
        "default_title": "Custom google chrome background"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.google.com\/*",
        "declarativeContent",
        "storage",
        "notifications",
        "webNavigation"
    ]
}