Daily Wallpaper Changer (Google & Wikipedia)
Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.
Cos'è Daily Wallpaper Changer (Google & Wikipedia)?
Daily Wallpaper Changer (Google & Wikipedia) è un'estensione di Chrome sviluppata da ssappmkr, e la sua funzione principale è "Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Daily Wallpaper Changer (Google & Wikipedia)
Scarica i file di estensione Daily Wallpaper Changer (Google & Wikipedia) 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
#What's new in v0.70 - Updated with manifest v3 support - Full Rewrite! - Bug fixes can be applied automatically without needing to update the extension Changes the background of many sites to something interesting. The image updates every day. The daily image is the Bing Daily Wallpaper, if you don't like it, you can change the image to something from the secondary source (unsplash). NOTE: It may take up to 48 hours for the daily sync to start working (it should usually work instantly). This is the first extension I have made, so there may be a few bugs. Coming up: - More Sites supported (Youtube, Amazon) Please leave a review if you like it, it means a lot to me. :)
Informazioni di Base sull'Estensione
Nome | Daily Wallpaper Changer (Google & Wikipedia) |
ID | hkoeemgmbjeknglofbbbadelcnfhdknf |
URL Ufficiale | https://chromewebstore.google.com/detail/daily-wallpaper-changer-g/hkoeemgmbjeknglofbbbadelcnfhdknf |
Descrizione | Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day. |
Dimensione del File | 177 KB |
Conteggio Installazioni | 2,234 |
Versione Corrente | 0.60 |
Ultimo Aggiornamento | 2022-11-07 |
Data di Pubblicazione | 2019-09-11 |
Valutazione | 4.57/5 Totale 21 Valutazioni |
Sviluppatore | ssappmkr |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://sanchit.com.au/dailywallpaper |
URL della Pagina di Aiuto | https://sanchit.com.au/dailywallpaper |
URL della Pagina della Politica sulla Privacy | https://sanchit.com.au/privacy-policy.html |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Daily Wallpaper Changer (Google & Wikipedia)", "version": "0.60", "description": "Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.", "permissions": [ "tabs", "storage", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "16": "\/images\/favicon-16x16.png", "48": "\/images\/favicon.ico", "128": "\/images\/favicon-128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_popup": "index.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ] } ] } |