ChromeBackground
Add your own custom background to Google.com
Was ist ChromeBackground?
ChromeBackground ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Add your own custom background to Google.com".
Erweiterungsscreenshots
ChromeBackground-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChromeBackground-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Add custom background to https://www.gooogle.com/*
Grundlegende Informationen zur Erweiterung
Name | |
ID | hiohpginbllenbjfohemjliffknnafnn |
Offizielle URL | https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn |
Beschreibung | Add your own custom background to Google.com |
Dateigröße | 1.44 MB |
Installationsanzahl | 18 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2021-11-16 |
Veröffentlichungsdatum | 2021-11-15 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Unknown |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/seanjyjy/chrome-bg |
Hilfeseite URL | https://github.com/seanjyjy/chrome-bg |
Unterstützte Sprachen | 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" ] } |