Greasy Fork

来自缓存

Greasy Fork is available in English.

破解微信编辑器会员限制

简单去除135编辑器、96编辑器、主编编辑器、易点编辑器vip限制

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         破解微信编辑器会员限制
// @namespace    https://ziyuand.cn/
// @version      0.6
// @description  简单去除135编辑器、96编辑器、主编编辑器、易点编辑器vip限制
// @author       Sherwin
// @match        *://*.135editor.com*
// @match        *://*.135editor.com/*
// @match        *://bj.96weixin.com*
// @match        *://www.wxeditor.com*
// @match        *://www.zhubian.com*
// @grant        none
// @run-at document-end
// ==/UserScript==

(function() {
        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(){
        $('body').click(function(e){
            //$(".modal-backdrop.show").remove();
            $(".show").attr("style","display: none;");
            $(".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");
        });
    }


})();