Add download button to Bing homepage.
Mint
// ==UserScript==
// @name Download Bing Background Image - bing.com
// @name:zh-CN 必应首页背景图片下载
// @description Add download button to Bing homepage.
// @description:zh-CN 在必应首页右下角添加一个背景图片下载按钮
// @namespace Violentmonkey Scripts
// @match https://*.bing.com/
// @grant none
// @version 0.3
// @author Alvin
// @run-at document-idle
// ==/UserScript==
var parent = document.getElementById('sh_rdiv');
parent.innerHTML += '<a role="button" id="downBtn" title="Download image" aria-label="Download image" role="button" href="" h="ID=SERP,5054.1" style="cursor: pointer;"><div class="sc_light" style="visibility: visible;"><div id="sh_lt" class="hpcDown"></div></div></a>';
var btn = document.getElementById('downBtn');
btn.addEventListener('click', function() {
var title = document.getElementById('sh_cp').title || (document.getElementById('musCardImageTitle').innerHTML + ' (' + document.getElementById('musCardCopyright').innerHTML + ')');
var bg = document.getElementById('bgDiv').style.backgroundImage;
imgUrl = bg.slice(4, -1).replace(/"/g, "");
btn.href = imgUrl;
btn.download = title + '.jpg'
}, false);