Beautify the browser

******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor

¿Qué es Beautify the browser?

Beautify the browser es una extensión de Chrome desarrollada por https://pbion.com, y su función principal es "******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Beautify the browser

Descarga archivos de extensión Beautify the browser 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

                        Make the browser more beautiful. 


Version 0.0.1: Custom cursor.
- Customize your experience of using the Chrome browser with cool free mouse cursors.                    

Información Básica de la Extensión

Nombre Beautify the browser Beautify the browser
ID fombgkgjcgjjgdlmmiodhfimlbealmkk
URL Oficial https://chromewebstore.google.com/detail/beautify-the-browser/fombgkgjcgjjgdlmmiodhfimlbealmkk
Descripción ******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor
Tamaño del Archivo 88.62 KB
Cantidad de Instalaciones 408
Versión Actual 0.0.1
Última Actualización 2019-05-04
Fecha de Publicación 2019-04-29
Calificación 2.33/5 Total de 3 Calificaciones
Desarrollador https://pbion.com
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://pbion.com/privacy-policy.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.1",
    "name": "Beautify the browser",
    "short_name": "Beautify the browser",
    "description": "******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor",
    "browser_action": {
        "default_icon": "logo.png",
        "default_title": "Make the browser more beautiful",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "css": [
                "cursor.css"
            ],
            "js": [
                "cursor.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        "cursors\/*",
        "cursor.css"
    ],
    "background": {
        "scripts": [
            "function.js",
            "config.js",
            "cursor_bg.js"
        ]
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    }
}