// ==UserScript== // @name 去掉WEBP - 转换WEBP图片到源格式(JPG PNG GIF)用于Onenote与Evernote剪藏 // @name:zh-CN 去掉WEBP - 转换WEBP图片到源格式(JPG PNG GIF)用于Onenote与Evernote剪藏 // @name:en NO WEBP - Convert WEBP Pics To Common Formats(JPG PNG GIF) For Onenote & Evernote Clip // @version 1.4 // @author Black Rabbit // @namespace Black Rabbit // @description 将豆瓣、微信公众号、简书的webp图片转换为通常格式(JPG PNG GIF),用于Onenote、Evernote剪辑,可自行添加生效网站。已兼容保留GIF动图,豆瓣动图自动加载。欢迎反馈建议。 // @description:zh-cn 将豆瓣、微信公众号、简书的webp图片转换为通常格式(JPG PNG GIF),用于Onenote、Evernote剪辑,可自行添加生效网站。已兼容保留GIF动图,豆瓣动图自动加载。欢迎反馈建议。 // @description:en Convert the webp pictures of Douban, WeChat public account and Jianshu into common formats(JPG PNG GIF) for editing in Evernote and Onenote. You can also try to add included urls by yourself. GIF kept and worked in new version. GIF in Douban autoloads. Welcome feedback and suggestions. // @icon https://railsware.com/blog/wp-content/uploads/2013/11/24823-picture1.png // @supportURL https://greasyfork.org/scripts/396210 // @include *://mp.weixin.qq.com/* // @include *://mmbiz.qpic.cn/* // @include *://www.jianshu.com/* // @include *://www.douban.com/* // @include *://*.douban.com/* // @downloadURL none // ==/UserScript== var img = document.getElementsByTagName('img'); //Douban Convert function douban_convert(){ 'use strict'; var img_class = document.getElementsByClassName('image-wrapper'); for(var i=0;i'; } else if(img_url.toLowerCase().includes('webp')){ img.src = img_url.replace(/webp/g,'jpg');} } setInterval(douban_remains); } function douban_remains(){ for (var i=0;i