Google Drive Background Color Changer

This extension will change the background color on documents in Google Drive

¿Qué es Google Drive Background Color Changer?

Google Drive Background Color Changer es una extensión de Chrome desarrollada por zacharyboyd, y su función principal es "This extension will change the background color on documents in Google Drive".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Drive Background Color Changer

Descarga archivos de extensión Google Drive Background Color Changer 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 Chrome Extension will change the background color on documents in Google Drive.                    

Información Básica de la Extensión

Nombre Google Drive Background Color Changer Google Drive Background Color Changer
ID lglnebacjkielbdldlkppfdcmfpbgofo
URL Oficial https://chromewebstore.google.com/detail/google-drive-background-c/lglnebacjkielbdldlkppfdcmfpbgofo
Descripción This extension will change the background color on documents in Google Drive
Tamaño del Archivo 122 KB
Cantidad de Instalaciones 1,653
Versión Actual 0.1
Última Actualización 2017-05-15
Fecha de Publicación 2017-05-15
Calificación 5.00/5 Total de 6 Calificaciones
Desarrollador zacharyboyd
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Drive Background Color Changer",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/docs.google.com\/*",
        "http:\/\/docs.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/docs.google.com\/*"
            ],
            "js": [
                "drive-color-changer.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "description": "This extension will change the background color on documents in Google Drive"
}