Beautify the browser

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

什么是Beautify the browser?

Beautify the browser是由https://pbion.com开发的Chrome扩展程序,该扩展的主要功能是“******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor”。

扩展截图

screenshot

下载Beautify the browser扩展crx文件

下载Beautify the browser扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Make the browser more beautiful. 


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

扩展基本信息

名称 Beautify the browser Beautify the browser
ID fombgkgjcgjjgdlmmiodhfimlbealmkk
官方URL https://chromewebstore.google.com/detail/beautify-the-browser/fombgkgjcgjjgdlmmiodhfimlbealmkk
简介 ******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor
文件大小 88.62 KB
安装次数 408
当前版本 0.0.1
更新时间 2019-05-04
上架时间 2019-04-29
评分 2.33/5 共3次评分
开发者 https://pbion.com
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://pbion.com/privacy-policy.html
支持的语言 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"
    }
}