跳转到内容

User:EricStoneChina/common.js

维基百科,自由的百科全书
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google ChromeFirefoxMicrosoft EdgeSafari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
importScript('User:SuperGrey/gadgets/CiteUnseen/main.js');
importScript('User:SuperGrey/gadgets/voter/main.js');

/* from [[User:桐生ここ/Gadget/Wikibreak.js]] */

mw.util.addPortletLink(
        'p-personal', '#',
        '放假提醒', 'wikibreak-button'
);
$( "#wikibreak-button" ).click( function() {
	if ( confirm( "您是否需要维基假期提醒?" ) ) {
	    localStorage.setItem( "wikibreak-setting" , "true" );
	}
	else {
		localStorage.setItem( "wikibreak-setting" , "false" );
	}
});
if ( localStorage.getItem( "wikibreak-setting" ) === "true" ){
	alert( "您正在放维基假期,请关闭此页。" );
}