Greasy Fork 还支持 简体中文。

破解微信编辑器会员限制

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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");
        });
    }


})();