Skip to content

Instantly share code, notes, and snippets.

@mactive
Last active January 18, 2017 10:02
Show Gist options
  • Save mactive/527d6dc2eade2abc5db0b34199e33630 to your computer and use it in GitHub Desktop.
Save mactive/527d6dc2eade2abc5db0b34199e33630 to your computer and use it in GitHub Desktop.
零售页面注入脚本
// ==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