您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将豆瓣、微信公众号、简书、知乎的webp图片转换为对应格式(JPG PNG GIF),用于Onenote、Evernote剪辑,可自行添加生效网站。已兼容保留GIF动图,豆瓣、知乎内动图自动加载。欢迎反馈建议。
当前为
// ==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.6 // @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 & Zhihu 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/* // @include *://*.zhihu.com/* // ==/UserScript== //Zhihu Convert 2020/2/17 function zhihu_convert(){ 'use strict'; //Seek GIF var img_class = document.getElementsByClassName('GifPlayer'); for(var i=0;i<img_class.length;i++){ img_class[i].className += ' isPlaying'; var img = img_class[i].getElementsByTagName('img'); img = img[0]; //GIF autoplay if (img.outerHTML.toLowerCase().includes('gif')){ img.src = img.src.replace(/jpg/g,'gif'); img.src = img.src.replace(/webp/g,'gif'); img_class[i].innerHTML = '<img class="ztext-gif" role="presentation" src="' + img.src + '" data-thumbnail="' + img.src + '" data-size="normal" title="" style="">'; } } } //Douban Convert 2020/2/17 function douban_convert(){ 'use strict'; var img = document.getElementsByTagName('img'); for(var i=0;i<img.length;i++){ //Fix & get correct url for GIF if (img[i].outerHTML.toLowerCase().includes('gif')){ if (img[i].src.toLowerCase().includes('webp')){ img[i].src = img[i].src.replace(/webp/g,'gif'); img[i].src = img[i].src.replace(/l\/public/g,'raw/public'); } else if (img[i].src.toLowerCase().includes('large')){ img[i].src = img[i].src.replace(/large/g,'raw'); img[i].src = img[i].src.replace(/jpg/g,'gif'); } img[i].outerHTML = '<img src="' + img[i].src + '" width="' + img[i].width + '">'; } else if(img[i].src.toLowerCase().includes('webp')){ img[i].src = img[i].src.replace(/webp/g,'jpg');} } } //Jianshu & Wechat & Other Convert 2020/2/14 function fkwebp(){ 'use strict'; var img = document.getElementsByTagName('img'); for (var i=0;i<img.length;i++){ if(img[i].src.toLowerCase().includes('webp')){ if(img[i].outerHTML.toLowerCase().includes('jpeg')){ img[i].src = img[i].src.replace(/webp/g,'jpeg');} else if(img[i].outerHTML.toLowerCase().includes('jpg')){ img[i].src = img[i].src.replace(/webp/g,'jpg');} else if(img[i].outerHTML.toLowerCase().includes('png')){ img[i].src = img[i].src.replace(/webp/g,'png');} else if(img[i].outerHTML.toLowerCase().includes('gif')){ img[i].src = img[i].src.replace(/webp/g,'gif');} else{ img[i].src = img[i].src.replace(/webp/g,'jpg');} } else{ clearInterval(fkwebp);} } } if (document.getElementsByTagName('body')[0].baseURI.toLowerCase().includes('douban')){ douban_convert();} else if (document.getElementsByTagName('body')[0].baseURI.toLowerCase().includes('zhihu')){ zhihu_convert();} else{ setInterval(fkwebp);} clearInterval(fkwebp);