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
Eメール [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"
    }
}