Greasy Fork

Greasy Fork is available in English.

Bilibili播放器狗头人进度条

也许是全网最丢人的播放器进度条了

当前为 2018-07-07 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name          Bilibili播放器狗头人进度条
// @namespace     http://userstyles.org
// @description	  也许是全网最丢人的播放器进度条了
// @author        ArcRain
// @homepage      https://userstyles.org/styles/161848
// @include       http://bilibili.com/*
// @include       https://bilibili.com/*
// @include       http://*.bilibili.com/*
// @include       https://*.bilibili.com/*
// @run-at        document-start
// @version       0.20180628133920
// ==/UserScript==
(function() {var css = [
	".bilibili-player-video-progress .bpui-slider-progress{",
	"  background: url(\"https://miao.su/images/2018/06/26/4772e5.png\") repeat-x !important; ",
	"               ",
	"}",
	"",
	"",
	".bilibili-player-video-progress  .bilibili-player-video-progress-buffer-range{",
	"   background: url(\"https://miao.su/images/2018/06/26/7d2c81.png\") !important;",
	"}",
	"",
	".bilibili-player-video-progress  .bpui-slider-handle:after{",
	"    width: 28px;",
	"    height: 28px;",
	"    top: -7px;",
	"    left: -7px;",
	"    position: absolute;",
	"    content: \"\";",
	"    line-height: 28px;",
	"    background: url(https://miao.su/images/2018/06/28/2b6508.gif) no-repeat;",
	"}"
].join("\n");
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		heads[0].appendChild(node);
	} else {
		// no head yet, stick it whereever
		document.documentElement.appendChild(node);
	}
}
})();