Greasy Fork is available in English.
简单去除135编辑器、96编辑器、主编编辑器、易点编辑器vip限制
当前为
// ==UserScript==
// @name 破解微信编辑器会员限制
// @namespace https://ziyuand.cn/
// @version 0.5
// @description 简单去除135编辑器、96编辑器、主编编辑器、易点编辑器vip限制
// @author Sherwin
// @match *://*.135editor.com
// @match *://bj.96weixin.com
// @match *://www.wxeditor.com
// @match *://www.zhubian.com
// @grant none
//@require http://code.jquery.com/jquery-migrate-1.2.1.min.js
// ==/UserScript==
(function() {
init();
function init(){
var host = window.location.host;
console.log(host);
switch(host){
case "www.135editor.com":
hack_135();
break;
case "bj.96weixin.com":
hack_96_ZB();
break;
case "www.zhubian.com":
hack_96_ZB();
break;
case "www.wxeditor.com":
hackED();
break;
}
}
function hack_135(){
$(".g-view-mask").remove();
$('div').click(function(e){
$(".modal-backdrop.show").remove();
$(".style-item.vip-style").removeClass("vip-style").addClass("style-item");
$("._135editor").attr("data-tools","hack");
$("._editor").attr("data-support","hack");
$("._135editor").attr("data-id","hack");
$(".style-item").attr("id","");
$(".style-item").attr("data-id","hack");
});
}
function hack_96_ZB(){
$('div').click(function(e){
$(".rich_media_content").attr("data-vip","1");
});
}
function hackED(){
$('div').click(function(e){
$('.yead_editor').attr('data-use',"1");
});
}
})();