Greasy Fork

Greasy Fork is available in English.

Last.fm link to Metal Archives

Creates a small M in front of each artist link on www.last.fm. The M's are linked to perform a band search on www.metal-archives.com

当前为 2019-09-30 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name           Last.fm link to Metal Archives
// @namespace      https://github.com/Row/lastfm-userscripts
// @description    Creates a small M in front of each artist link on www.last.fm. The M's are linked to perform a band search on www.metal-archives.com
// @version        3.0
// @include        https://www.last.fm*
// @include        https://www.lastfm.*
// @include        https://cn.last.fm*
// ==/UserScript==

function addStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    try {
        style.innerHTML = css;
    } catch (err) {
        style.innerText = css;
    }
    head.appendChild(style);
}

addStyle(`
    .LMAa {
        font-size: 70% !important;
        display: inline;
    }
    .grid-items-item-aux-text .LMAa, .featured-item-details .LMAa {
        float: left;
        margin-right: 0.5em;
    }
`);

function parser() {
    // Create a node-list of all a-tags
    const selector = 'a'+
                     ':not(.LMA)' +
                     ':not(.auth-dropdown-menu-item)' +
                     ':not([aria-hidden="true"])' +
                     '[href^="/music"]';

    const nodeListA = document.querySelectorAll(selector);

    // Match /music/ and one or more characters which is not / or #
    const re = /\/music\/([^/#]+)$/i;

    nodeListA.forEach(artistLink => {
        const match = artistLink.href.match(re);
        if (!match) return;

        // Remove uri query string if present
        const artist = match[1].replace(/\?.+$/, '');

        // Use className as a marker
        artistLink.className += ' LMA';

        // Create the M
        const metalLink = document.createElement('a');
        metalLink.href = 'http://www.metal-archives.com/search?type=band_name&searchString=' + artist;
        metalLink.className = 'LMAa';
        metalLink.title = 'Search ' + artist + ' on Metal Archives';
        metalLink.innerHTML = 'M ';
        artistLink.parentNode.insertBefore(metalLink, artistLink);
    });

    // Init the ticker
    window.setTimeout(parser, 1000);
}

parser();