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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        #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
이메일 [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"
            ]
        }
    ]
}