最近火起來的12306.cn,順帶着火起來一些刷票的腳本。
一個很好玩的東西油猴腳本映入眼簾!
瞬間覺得自己會點JS,挺好。本着愛學習的態度,用晚上的時間做了個小的DEMO:http://www.dachie.com/userscript/
// ==UserScript== // @name Hello World // @namespace http://diveintogreasemonkey.org/download/ // @description example script to alert "Hello world!" on every page // @include * // @exclude http://diveintogreasemonkey.org/* // @exclude http://www.diveintogreasemonkey.org/* // ==/UserScript==
整體結構基本上是這樣。
還可以// @require http://code.jquery.com/jquery-1.8.2.js 一些你需要的類庫到油猴腳本中使用
