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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    }
}