Daily Wallpaper Changer (Google & Wikipedia)

Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.

Vad är Daily Wallpaper Changer (Google & Wikipedia)?

Daily Wallpaper Changer (Google & Wikipedia) är en Chrome-tillägg utvecklad av ssappmkr, och dess huvudfunktion är "Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Daily Wallpaper Changer (Google & Wikipedia)-förlängningens CRX-fil

Ladda ner Daily Wallpaper Changer (Google & Wikipedia)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        #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. :)                    

Grundläggande Information om Tillägg

Namn Daily Wallpaper Changer (Google & Wikipedia) Daily Wallpaper Changer (Google & Wikipedia)
ID hkoeemgmbjeknglofbbbadelcnfhdknf
Officiell webbadress https://chromewebstore.google.com/detail/daily-wallpaper-changer-g/hkoeemgmbjeknglofbbbadelcnfhdknf
Beskrivning Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.
Filstorlek 177 KB
Antal Installationer 2,234
Aktuell Version 0.60
Senast Uppdaterad 2022-11-07
Publiceringsdatum 2019-09-11
Betyg 4.57/5 Totalt 21 Betyg
Utvecklare ssappmkr
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://sanchit.com.au/dailywallpaper
Hjälpsida URL https://sanchit.com.au/dailywallpaper
URL till Sekretesspolicy Sidan https://sanchit.com.au/privacy-policy.html
Stödda Språk 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"
            ]
        }
    ]
}