Beautify the browser

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

Co to jest Beautify the browser?

Beautify the browser to rozszerzenie Chrome opracowane przez https://pbion.com, a jego główną funkcją jest „******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Beautify the browser

Pobierz pliki rozszerzeń Beautify the browser w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Make the browser more beautiful. 


Version 0.0.1: Custom cursor.
- Customize your experience of using the Chrome browser with cool free mouse cursors.                    

Podstawowe informacje o rozszerzeniu

Nazwa Beautify the browser Beautify the browser
ID fombgkgjcgjjgdlmmiodhfimlbealmkk
Oficjalny URL https://chromewebstore.google.com/detail/beautify-the-browser/fombgkgjcgjjgdlmmiodhfimlbealmkk
Opis ******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor
Rozmiar pliku 88.62 KB
Liczba instalacji 408
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2019-05-04
Data Publikacji 2019-04-29
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper https://pbion.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://pbion.com/privacy-policy.html
Obsługiwane Języki 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"
    }
}