ChromeBackground

Add your own custom background to Google.com

Qu'est-ce que ChromeBackground ?

ChromeBackground est une extension Chrome développée par Unknown, et sa fonction principale est "Add your own custom background to Google.com".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ChromeBackground

Téléchargez les fichiers d'extension ChromeBackground au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom ChromeBackground ChromeBackground
ID hiohpginbllenbjfohemjliffknnafnn
URL Officiel https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn
Description Add your own custom background to Google.com
Taille du Fichier 1.44 MB
Nombre d'Installations 18
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-11-16
Date de Publication 2021-11-15
Évaluation 5.00/5 Total 1 Évaluations
Développeur Unknown
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/seanjyjy/chrome-bg
URL de la Page d'Aide https://github.com/seanjyjy/chrome-bg
Langues Prises en Charge 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"
    ]
}