MediaWiki:Gadget-VideoCutTool.js

From wikishia

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
// [[MediaWiki:Gadget-CropTool.js]] fork
'use strict';
var title = mw.config.get('wgTitle');
if (mw.config.get('wgNamespaceNumber') === 6 &&
	mw.config.get('wgIsArticle') &&
	/\.(WEBM|OG[GV]|MP[4G])$/i.test(title) && // webm, ogg, ogv, mp4, mpg
	document.getElementById('file')) {
	$(function () {
		title = new mw.Uri('//videocuttool.wmflabs.org/')
			.extend({
				title: title,
			});
		mw.util.addPortletLink(
			'p-tb',
			title.toString(),
			'⌗ VideoCutTool',
			't-videocuttool',
			'VideoCutTool');
	});
}