Beautify the browser

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

Was ist Beautify the browser?

Beautify the browser ist eine Chrome-Erweiterung, die von https://pbion.com entwickelt wurde, und ihr Hauptmerkmal ist "******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor".

Erweiterungsscreenshots

screenshot

Beautify the browser-Erweiterungs-CRX-Datei herunterladen

Laden Sie Beautify the browser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Make the browser more beautiful. 


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

Grundlegende Informationen zur Erweiterung

Name Beautify the browser Beautify the browser
ID fombgkgjcgjjgdlmmiodhfimlbealmkk
Offizielle URL https://chromewebstore.google.com/detail/beautify-the-browser/fombgkgjcgjjgdlmmiodhfimlbealmkk
Beschreibung ******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor
Dateigröße 88.62 KB
Installationsanzahl 408
Aktuelle Version 0.0.1
Letztes Update 2019-05-04
Veröffentlichungsdatum 2019-04-29
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler https://pbion.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://pbion.com/privacy-policy.html
Unterstützte Sprachen 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"
    }
}