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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}