Remove Quote Marks

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

You will need to install an extension such as Tampermonkey, Greasemonkey 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 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.

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

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

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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);
        });
    }
})();