Last active
January 18, 2017 10:02
-
-
Save mactive/527d6dc2eade2abc5db0b34199e33630 to your computer and use it in GitHub Desktop.
零售页面注入脚本
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 零售页面注入脚本 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match http://m.retail.st.sankuai.com/* | |
// @run-at document-start | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
console.log('零售页面注入脚本成功'); | |
window._setTime = setTimeout; | |
window._setTime(function(){ | |
$('.list-group').show(); | |
}, 1000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment