Remove Quote Marks

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

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

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

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

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

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

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

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

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

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

你需要先安裝一款使用者樣式管理器擴展,比如 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);
        });
    }
})();