Genius+

Enhances genius.com with a custom artist song search and future improvements.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Genius+
// @namespace    https://github.com/alengaa/genius-plus
// @version      0.1
// @description  Enhances genius.com with a custom artist song search and future improvements.
// @author       Alén
// @match        https://genius.com/artists/*
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function addSearchBar() {
        if (document.getElementById('genius-artist-search')) return; // Prevent duplicates

        const artistHeader = document.querySelector('h1');
        if (!artistHeader) return;

        const actionRow = document.querySelector('.profile_identity_and_description-action_row');
        if (!actionRow) return;

        const artistName = artistHeader.childNodes[0].nodeValue.trim(); // Ensures only the name is captured
        const searchBar = document.createElement('input');
        searchBar.id = 'genius-artist-search';
        searchBar.type = 'text';
        searchBar.placeholder = `Search ${artistName} songs...`;

        // Styling to match Genius' design
        searchBar.style.width = '100%';
        searchBar.style.marginTop = '10px';
        searchBar.style.marginBottom = '10px';
        searchBar.style.padding = '8px';
        searchBar.style.fontSize = '16px';
        searchBar.style.fontFamily = 'Programme, sans-serif'; // Genius uses Programme
        searchBar.style.color = '#000000'; // Fully black text
        searchBar.style.backgroundColor = 'white';
        searchBar.style.border = 'none';
        searchBar.style.outline = 'none';
        searchBar.style.display = 'block';
        searchBar.style.boxShadow = '4px 4px 6px rgba(0, 0, 0, 0.1)'; // Shadow at the corner
        searchBar.style.fontWeight = '900'; // Ensure full black text
        searchBar.style.caretColor = '#000000'; // Ensure cursor is black

        // Insert after the action row
        actionRow.parentNode.insertBefore(searchBar, actionRow.nextSibling);

        searchBar.addEventListener('keydown', function(event) {
            if (event.key === 'Enter' && searchBar.value.trim() !== '') {
                const query = encodeURIComponent(`${artistName} ${searchBar.value.trim()}`);
                window.location.href = `https://genius.com/search?q=${query}`;
            }
        });
    }

    function observePageChanges() {
        const observer = new MutationObserver(() => {
            addSearchBar(); // Re-add the search bar if it disappears
        });
        observer.observe(document.body, { childList: true, subtree: true });
    }

    addSearchBar();
    observePageChanges();
})();