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