ChromeBackground
Add your own custom background to Google.com
Cos'è ChromeBackground?
ChromeBackground è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Add your own custom background to Google.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChromeBackground
Scarica i file di estensione ChromeBackground in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Add custom background to https://www.gooogle.com/*
Informazioni di Base sull'Estensione
Nome | |
ID | hiohpginbllenbjfohemjliffknnafnn |
URL Ufficiale | https://chromewebstore.google.com/detail/chromebackground/hiohpginbllenbjfohemjliffknnafnn |
Descrizione | Add your own custom background to Google.com |
Dimensione del File | 1.44 MB |
Conteggio Installazioni | 18 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-11-16 |
Data di Pubblicazione | 2021-11-15 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/seanjyjy/chrome-bg |
URL della Pagina di Aiuto | https://github.com/seanjyjy/chrome-bg |
Lingue Supportate | 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" ] } |