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
screenshot
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
Ηλεκτρονικό ταχυδρομείο pbion.com@gmail.com
Τύπος Πληρωμής 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"
    }
}