Daily Wallpaper Changer (Google & Wikipedia)
Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.
What is Daily Wallpaper Changer (Google & Wikipedia)?
Daily Wallpaper Changer (Google & Wikipedia) is a Chrome extension developed by ssappmkr, and its main feature is "Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.".
Extension Screenshots
Download Daily Wallpaper Changer (Google & Wikipedia) Extension CRX File
Download Daily Wallpaper Changer (Google & Wikipedia) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
#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. :)
Extension Basic Information
Name | Daily Wallpaper Changer (Google & Wikipedia) |
ID | hkoeemgmbjeknglofbbbadelcnfhdknf |
Official URL | https://chromewebstore.google.com/detail/daily-wallpaper-changer-g/hkoeemgmbjeknglofbbbadelcnfhdknf |
Description | Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day. |
File Size | 177 KB |
Installation Count | 2,234 |
Current Version | 0.60 |
Last Updated | 2022-11-07 |
Publish Date | 2019-09-11 |
Rating | 4.57/5 Total 21 Ratings |
Developer | ssappmkr |
[email protected] | |
Payment Type | free |
Extension Website | https://sanchit.com.au/dailywallpaper |
Help Page URL | https://sanchit.com.au/dailywallpaper |
Privacy Policy Page URL | https://sanchit.com.au/privacy-policy.html |
Supported Languages | 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" ] } ] } |