您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add highlights to listened Bandcamp albums. Note: All domains is required for the script, because some albums listed on bandcamp.com are not served on bandcamp.com. For albums served on sites other than bandcamp.com, the recognition of the album playback is possible only if the site uses bandcamp.com's document format.
// ==UserScript== // @name Highlight Listened Bandcamp Albums // @namespace https://greasyfork.org/en/users/85671-jcunews // @version 1.0.1 // @license GNU AGPLv3 // @description Add highlights to listened Bandcamp albums. Note: All domains is required for the script, because some albums listed on bandcamp.com are not served on bandcamp.com. For albums served on sites other than bandcamp.com, the recognition of the album playback is possible only if the site uses bandcamp.com's document format. // @author jcunews // @match *://*/* // @grant GM_getValue // @grant GM_setValue // ==/UserScript== (function(ele) { var highlightColor = "#fbf"; function getPlayed(result, z) { try { result = JSON.parse(GM_getValue("played", "[]")); } catch(z) { result = []; } return result; } function onPlay(played, a) { played = getPlayed(); a = location.hostname + location.pathname; if (played.indexOf(a) < 0) { played.push(a); GM_setValue("played", JSON.stringify(played)); } this.removeEventListener("click", onPlay); } function highlightList(played, eles) { played = getPlayed(); eles = document.querySelectorAll(".discover-result > .discover-item > .item-title, .results_area > .results > .item_list > .item > a"); Array.prototype.slice.call(eles).forEach( function(ele, a) { a = ele.hostname + ele.pathname; if (played.indexOf(a) >= 0) { ele.parentNode.style.cssText = "outline:" + (ele.className ? 5 : 10) + "px solid " + highlightColor + ";background-color:" + highlightColor; } } ); } if ((/bandcamp\.com$/).test(location.hostname)) { if ((/\/\/bandcamp\.com\/?($|[?#])/).test(location.href)) { ele = null; (function updHighlists(e) { if ((e = document.querySelector(".discover-result > .discover-item:nth-child(2)")) && (e !== ele)) { highlightList(); } else setTimeout(updHighlists, 500); })(); } else if ((/\/\/bandcamp\.com\/tag\//).test(location.href)) { highlightList(); } else if ((/\.bandcamp\.com\/album\//).test(location.href)) { if (ele = document.querySelector(".playbutton")) { ele.addEventListener("click", onPlay); } } document.addEventListener("visibilitychange", highlightList); } else if (document.querySelector('.trackView[itemtype="http://schema.org/MusicAlbum"]')) { if (ele = document.querySelector(".playbutton")) { ele.addEventListener("click", onPlay); } } })();