Last active
June 19, 2017 14:29
-
-
Save zhanglongqi/24d3410126cb706b2307173c6e0a8b64 to your computer and use it in GitHub Desktop.
wechat article
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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