ChromeBackground

Add your own custom background to Google.com

Hvad er ChromeBackground?

ChromeBackground er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Add your own custom background to Google.com".

Udvidelsesskærmbilleder

screenshot

Download ChromeBackground-udvidelses-CRX-fil

Download ChromeBackground-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

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

Grundlæggende oplysninger om udvidelsen

Navn ChromeBackground ChromeBackground
ID hiohpginbllenbjfohemjliffknnafnn
Officiel URL https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn
Beskrivelse Add your own custom background to Google.com
Filstørrelse 1.44 MB
Antal Installationer 18
Nuværende Version 1.0.0
Senest Opdateret 2021-11-16
Udgivelsesdato 2021-11-15
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Unknown
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/seanjyjy/chrome-bg
Hjælpeside-URL https://github.com/seanjyjy/chrome-bg
Understøttede Sprog 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"
    ]
}