Beautify the browser

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

O que é Beautify the browser?

Beautify the browser é uma extensão do Chrome desenvolvida por https://pbion.com, e sua principal característica é "******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Beautify the browser

Baixe arquivos de extensão Beautify the browser no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Make the browser more beautiful. 


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

Informações Básicas da Extensão

Nome Beautify the browser Beautify the browser
ID fombgkgjcgjjgdlmmiodhfimlbealmkk
URL Oficial https://chromewebstore.google.com/detail/beautify-the-browser/fombgkgjcgjjgdlmmiodhfimlbealmkk
Descrição ******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor
Tamanho do Arquivo 88.62 KB
Contagem de Instalações 408
Versão Atual 0.0.1
Última Atualização 2019-05-04
Data de Publicação 2019-04-29
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor https://pbion.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://pbion.com/privacy-policy.html
Idiomas Suportados 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"
    }
}