Daily Wallpaper Changer (Google & Wikipedia)

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

O que é Daily Wallpaper Changer (Google & Wikipedia)?

Daily Wallpaper Changer (Google & Wikipedia) é uma extensão do Chrome desenvolvida por ssappmkr, e sua principal característica é "Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Daily Wallpaper Changer (Google & Wikipedia)

Baixe arquivos de extensão Daily Wallpaper Changer (Google & Wikipedia) no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Daily Wallpaper Changer (Google & Wikipedia) Daily Wallpaper Changer (Google & Wikipedia)
ID hkoeemgmbjeknglofbbbadelcnfhdknf
URL Oficial https://chromewebstore.google.com/detail/daily-wallpaper-changer-g/hkoeemgmbjeknglofbbbadelcnfhdknf
Descrição Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.
Tamanho do Arquivo 177 KB
Contagem de Instalações 2,234
Versão Atual 0.60
Última Atualização 2022-11-07
Data de Publicação 2019-09-11
Classificação 4.57/5 Total de 21 Avaliações
Desenvolvedor ssappmkr
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://sanchit.com.au/dailywallpaper
URL da Página de Ajuda https://sanchit.com.au/dailywallpaper
URL da Página de Política de Privacidade https://sanchit.com.au/privacy-policy.html
Idiomas Suportados 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"
            ]
        }
    ]
}