Daily Wallpaper Changer (Google & Wikipedia)

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

Daily Wallpaper Changer (Google & Wikipedia)とは何ですか?

Daily Wallpaper Changer (Google & Wikipedia)はssappmkrによって開発されたChromeの拡張機能で、その主な機能は「Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Daily Wallpaper Changer (Google & Wikipedia)拡張機能のCRXファイルをダウンロード

Daily Wallpaper Changer (Google & Wikipedia)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Daily Wallpaper Changer (Google & Wikipedia) Daily Wallpaper Changer (Google & Wikipedia)
ID hkoeemgmbjeknglofbbbadelcnfhdknf
公式URL https://chromewebstore.google.com/detail/daily-wallpaper-changer-g/hkoeemgmbjeknglofbbbadelcnfhdknf
説明 Changes the wallpaper of Google and Wikipedia to the Bing Daily Wallpaper. The image updates every day.
ファイルサイズ 177 KB
インストール数 2,234
現在のバージョン 0.60
最終更新日 2022-11-07
公開日 2019-09-11
評価 4.57/5 合計 21 レビュー
開発者 ssappmkr
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://sanchit.com.au/dailywallpaper
ヘルプページのURL https://sanchit.com.au/dailywallpaper
プライバシーポリシーページのURL https://sanchit.com.au/privacy-policy.html
対応言語 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"
            ]
        }
    ]
}