Beautify the browser

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

Beautify the browserคืออะไร?

Beautify the browser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://pbion.com และคุณลักษณะหลักของมันคือ "******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Beautify the browser

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}