ChromeBackground
Add your own custom background to Google.com
Wat is ChromeBackground?
ChromeBackground is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Add your own custom background to Google.com".
Extensie Screenshots
Download het CRX-bestand van de extensie ChromeBackground
Download ChromeBackground-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Add custom background to https://www.gooogle.com/*
Basisinformatie over de Extensie
Naam | |
ID | hiohpginbllenbjfohemjliffknnafnn |
Officiële URL | https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn |
Beschrijving | Add your own custom background to Google.com |
Bestandsgrootte | 1.44 MB |
Aantal Installaties | 18 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-11-16 |
Publicatiedatum | 2021-11-15 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Unknown |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/seanjyjy/chrome-bg |
Help Pagina-URL | https://github.com/seanjyjy/chrome-bg |
Ondersteunde Talen | 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" ] } |