Remove Quote Marks

This removes the quotation marks that tend to block text content.

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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

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

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

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

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Remove Quote Marks
// @namespace   https://github.com/Official-Husko/violentmonkey-scripts
// @match       https://www.nexusmods.com/*
// @description This removes the quotation marks that tend to block text content.
// @grant       none
// @license     GNU GPLv3
// @version     1.0
// @author      Official Husko
// @icon        https://www.pulexart.com/uploads/7/0/1/2/70121829/40.png
// ==/UserScript==

(function() {
    'use strict';

    // Select all SVG elements with the specified class name
    var svgElements = document.querySelectorAll('.icon-quote');

    // Check if any SVG elements exist before attempting to remove them
    if (svgElements.length > 0) {
        // Remove each SVG element
        svgElements.forEach(function(svgElement) {
            svgElement.parentNode.removeChild(svgElement);
        });
    }
})();