ニコニコ動画のHTML5・Flashで視聴するバーを移動
ニコニコ動画の不満点を改善する。
不満点
- HTML5/Flash版で視聴するバーが常時表示される
改善結果
HTML5/Flash版で視聴するバーをページ下部(フッターの上)へ移動する。
ユーザスクリプト
ニコニコ動画通知バー移動// ==UserScript==
// @name ニコニコ動画 通知バー移動
// @description HTML5とFlash切換えバーをページ下部へ移動する
// @include http://www.nicovideo.jp/watch/*
// @include https://www.nicovideo.jp/watch/*
// @author toshi
// @license MIT License
// @see https://opensource.org/licenses/MIT
// @namespace https://www.bugbugnow.net/
// @version 1
// @grant none
// ==/UserScript==
(function () {
// Flash版
var flash = document.querySelector('.html5_message');
var footer = document.querySelector('#footer');
if (flash && footer) {
flash.style.margin = '0px';
footer.insertAdjacentElement('beforebegin', flash);
}
// HTML5版
var html = document.querySelector('.SwitchToFlashLead');
var footer = document.querySelector('.FooterContainer');
if (html && footer) {
footer.style.marginTop = '0px';
footer.insertAdjacentElement('beforebegin', html);
}
})();