ChromeBackground

Add your own custom background to Google.com

Τι είναι το ChromeBackground;

Το ChromeBackground είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Add your own custom background to Google.com".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ChromeBackground

Λήψη αρχείων επέκτασης ChromeBackground σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Add custom background to https://www.gooogle.com/*                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChromeBackground ChromeBackground
ID hiohpginbllenbjfohemjliffknnafnn
Επίσημο URL https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn
Περιγραφή Add your own custom background to Google.com
Μέγεθος Αρχείου 1.44 MB
Αριθμός Εγκαταστάσεων 18
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2021-11-16
Ημερομηνία Δημοσίευσης 2021-11-15
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Unknown
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/seanjyjy/chrome-bg
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/seanjyjy/chrome-bg
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeBackground",
    "description": "Add your own custom background to Google.com",
    "version": "1.0.0",
    "author": "Sean Lum",
    "icons": {
        "16": ".\/images\/background16.png",
        "48": ".\/images\/background48.png",
        "128": ".\/images\/background128.png"
    },
    "page_action": {
        "default_icon": ".\/images\/background16.png",
        "default_popup": "popup.html",
        "default_title": "Custom google chrome background"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/www.google.com\/*",
        "declarativeContent",
        "storage",
        "notifications",
        "webNavigation"
    ]
}