Skip to content

Instantly share code, notes, and snippets.

@zhanglongqi
Last active June 19, 2017 14:29
Show Gist options
  • Save zhanglongqi/24d3410126cb706b2307173c6e0a8b64 to your computer and use it in GitHub Desktop.
Save zhanglongqi/24d3410126cb706b2307173c6e0a8b64 to your computer and use it in GitHub Desktop.
wechat article
// ==UserScript==
// @name wechat
// @namespace http://tampermonkey.net/
// @version 0.2
// @description expand the width of wechat article to 100%, hide the QR code div
// @author LongQi
// @match https://mp.weixin.qq.com/*
// @grant none
// @updateURL https://gist.github.com/zhanglongqi/24d3410126cb706b2307173c6e0a8b64
// ==/UserScript==
(function() {
'use strict';
document.querySelector("#js_pc_qr_code > div > div").style.display = "none";
document.querySelector('#js_article').style.width = "100vh";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment