コンテンツにスキップ

利用者:Cpro/monobook.js

お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。

多くの WindowsLinux のブラウザ

  • Ctrl を押しながら F5 を押す。

Mac における Safari

  • Shift を押しながら、更新ボタン をクリックする。

Mac における ChromeFirefox

  • Cmd Shift を押しながら R を押す。

詳細についてはWikipedia:キャッシュを消すをご覧ください。

/*
以下のスクリプトはパブリックドメインとします。
改変・再配布を含め自由にお使いいただけますが、自己責任でお願いします。
These scripts below are under public domain.
You can freely use, modify or redistribute, at your own risk.
*/

/* ガジェットのカスタム設定 */
//popups options
popupAdminLinks = true;
popupRedlinkRemoval = true;
popupFixDabs = true;
//UTCの時刻を地方時で表示する
LocalComments = { twentyFourHours: true };

(function($) {
	//addOnloadHook(setJSTTitle);
	//importScript("利用者:Cpro/vfd.js");
	//importScript("利用者:Tietew/log.js");
	//importScript("利用者:Cpro/checksigniture.js");
	//importScript("利用者:Cpro/transfercharwidth.js");
	//importScript("利用者:Cpro/appendContributionsLinkForVote.js");
	//importScript("利用者:Cpro/popups-strings-ja.js");
	//importScript("利用者:Cpro/showLastModOnTop.js");
	//importScript("利用者:Cpro/contribsrange.js");
	//importScript("利用者:Cpro/suppressEnterAtSummaryBox.js");
	//importScript("利用者:Cpro/hideLongTOC.js");
	//importScript("利用者:Cpro/magiceditintro.js");
	//importScript("利用者:Cpro/vpTagHelper.js/sandbox.js");
	//importScript("利用者:Cpro/comments in local time.js");
	//importScript("利用者:Cpro/addTweetButton.js");
	//importScript("利用者:Cpro/modifyEditsection.js");
	//importScript("利用者:Cpro/TitleChecker.js");
	//importScript("利用者:Cpro/sectionUtil.js");
	
	//表示中のページ名で始まる記事の一覧を表示
	function addPrefixindexTool() {
		mw.util.addPortletLink('p-tb',
			mw.util.getUrl('特別:始点指定ページ一覧/' + mw.config.get('wgPageName')),
			'始点指定ページ一覧',
			't-prefixindex',
			'「' + mw.config.get('wgPageName') + '」から始まるページ一覧'
		);
	}
	
	//投稿記録のバイト数増減を後ろに持っていく
	function moveByteChangesToLast() {
		$('#mw-content-text ul.mw-contributions-list li').each(function() {
			$(this).find('span.mw-changeslist-separator:first').appendTo(this);
			$(this).find('.mw-plusminus-neg, .mw-plusminus-pos, .mw-plusminus-null').appendTo(this);
		});
	}
	
	$(function() {
		addPrefixindexTool();
		if(mw.config.get('wgCanonicalSpecialPageName') == 'Contributions')
			moveByteChangesToLast();
	});
})(jQuery);