BC: record label link visible

copy the "← record label" link above the album art so it's visible without resizing the browser window

  1. // ==UserScript==
  2. // @name BC: record label link visible
  3. // @namespace userscript1
  4. // @match https://*.bandcamp.com/*
  5. // @match https://*.bandcamp.com/
  6. // @grant none
  7. // @version 0.1.1
  8. // @description copy the "← record label" link above the album art so it's visible without resizing the browser window
  9. // @license GPLv3
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. document.querySelector('div.middleColumn')?.insertAdjacentHTML('afterBegin',
  16. `<div id="labelcopy" style="margin-bottom: 1em;"></div>`
  17. );
  18.  
  19. var target = document.querySelector('#labelcopy');
  20. document.querySelectorAll('a.back-to-label-link').forEach(a => {
  21. var text = a.firstElementChild.innerHTML.split('<br>').join(' '); // innerText strips thelinebreak??
  22. var href = a.href;
  23. target.innerHTML = `<a href=${href}>← ${text}</a>`;
  24. });
  25.  
  26. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址