Beautify the browser

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

Hvad er Beautify the browser?

Beautify the browser er en Chrome-udvidelse udviklet af https://pbion.com, og dens hovedfunktion er "******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor".

Udvidelsesskærmbilleder

screenshot

Download Beautify the browser-udvidelses-CRX-fil

Download Beautify the browser-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Make the browser more beautiful. 


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

Grundlæggende oplysninger om udvidelsen

Navn Beautify the browser Beautify the browser
ID fombgkgjcgjjgdlmmiodhfimlbealmkk
Officiel URL https://chromewebstore.google.com/detail/beautify-the-browser/fombgkgjcgjjgdlmmiodhfimlbealmkk
Beskrivelse ******* Make the browser more beautiful. ****** Version 0.0.1: Custom cursor
Filstørrelse 88.62 KB
Antal Installationer 408
Nuværende Version 0.0.1
Senest Opdateret 2019-05-04
Udgivelsesdato 2019-04-29
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler https://pbion.com
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://pbion.com/privacy-policy.html
Understøttede Sprog 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"
    }
}