nascent / PSPrices Better Navigation

// ==UserScript==
// @name         PSPrices Better Navigation
// @namespace    https://psprices.com/
// @version      0.2
// @description  Removed the Go to first and last page buttons
// @author       nascent
// @match        https://psprices.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=psprices.com
// @grant        none
// @updateURL   https://openuserjs.org/meta/nascent/PSPrices_Better_Navigation.meta.js
// @downloadURL https://openuserjs.org/install/nascent/PSPrices_Better_Navigation.user.js
// @license GPL-3.0-or-later
// ==/UserScript==

(function() {
    'use strict';

    // Remove first and last page buttons
    const firstPageBtn = document.querySelector('a[aria-label="Go to first page"]');
    const lastPageBtn = document.querySelector('a[aria-label="Go to last page"]');

    if (firstPageBtn) {
        firstPageBtn.remove();
    }
    if (lastPageBtn) {
        lastPageBtn.remove();
    }
})();