Last active
August 29, 2015 14:01
-
-
Save zenith6/e367e8bc676d74713c72 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://kilauea.bbspink.com/test/read.cgi/mobpink/ | |
| // @version 0.2 | |
| // @description Chrome extension にしたい。 | |
| // @match http://www.dmm.co.jp/netgame/social/-/gadgets/=/app_id=156462/ | |
| // @copyright 2014+, zenith | |
| // ==/UserScript== | |
| (function ($) { | |
| // ページ移動前に確認を出す | |
| $(window).bind('beforeunload', function (e) { | |
| e.originalEvent.returnValue = '冗談でも離れるなんて言わないで。そんなの…イヤだから。'; | |
| }); | |
| }(jQuery)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment