/* */

油猴脚本 修改掘金背景图 设置自己喜欢的背景图!

分类:技术文章 时间:2024-03-13 16:32 浏览:0 评论:0
0

修改掘金背景图,设置自己喜欢的背景图!有默认的背景图,也可以在浏览器右上角上传图片更改自己喜欢的背景图,上传完会缓存图片路径在浏览器中。

// ==UserScript==
// [url=home.php?mod=space&uid=170990]@name[/url] juejinBackgroundImage
// [url=home.php?mod=space&uid=467642]@namespace[/url] http://tampermonkey.net/
// [url=home.php?mod=space&uid=1248337]@version[/url] 0.2.1
// @description 修改掘金背景图,设置自己喜欢的背景图!
// [url=home.php?mod=space&uid=686208]@AuThor[/url] wjh
// [url=home.php?mod=space&uid=195849]@match[/url] https://juejin.cn
// @match https://juejin.cn/*
// @match https://www.zhihu.com/*
// [url=home.php?mod=space&uid=593100]@Icon[/url] https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/849e3902e63a42cea93abb448cb0bb0f~tplv-k3u1fbpfcp-watermark.image
// @require https://cdn.bootcdn.net/ajax/libs/jquery/3.2.1/jquery.min.js
// [url=home.php?mod=space&uid=609072]@grant[/url] none
// ==/UserScript==
(function() {
'use strict';
$(document).ready(function(){
// 图片路径
let imgUrl = window.localStorage.getItem('imgUrl') || 'https://p9-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/9d58e69aaefa4aa59fdd61f1a58ede84~tplv-k3u1fbpfcp-watermark.image'
let uploadBox = "<div id='uploadBox' style='position:fixed;top:80px;right:20px;background:rgba(255,255,255,0.5);padding: 10px;'><input style='width:66px;' type='file' name='' id='files'></div>"
$('#juejin').css('backgroundImage',`url(${imgUrl})`);
$('#juejin').css('backgroundSize',`100%`);
$('.App-main').css('backgroundImage',`url(${imgUrl})`);
$('.App-main').css('backgroundSize',`100%`);
$('body').append(uploadBox);
$("#files").change(function(e) {
readFileAsDataURL($('#files')[0].files[0]).then(dataURL => {
window.localStorage.setItem('imgUrl',dataURL)
$('#juejin').css('backgroundImage',`url(${dataURL})`);
$('.App-main').css('backgroundImage',`url(${dataURL})`);
});
})
})
function readFileAsDataURL(file) {
return new Promise((resolve, reject) => {
let reader = new FileReader();
reader.onload = function(event) {
resolve(event.target.result);
};
reader.onerror = function(event) {
reject(new Error("File could not be read! Code " + event.target.error.code));
};
reader.readAsDataURL(file);
});
}
// Your code here...
})();

也可在线直接一键安装:https://greasyfork.org/zh-CN/scripts/469705-juejinbackgroundimage

1. 本站所有资源来源于用户上传或网络,仅作为参考研究使用,如有侵权请邮件联系站长!
2. 本站积分货币获取途径以及用途的解读,想在本站混的好,请务必认真阅读!
3. 本站强烈打击盗版/破解等有损他人权益和违法作为,请各位会员支持正版!
4. 技术文章 > 油猴脚本 修改掘金背景图 设置自己喜欢的背景图!

用户评论