解除 displayspecifications 复制限制

Remove the copy restriction on displayspecifications.com, 解除 displayspecifications 复制限制

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         解除 displayspecifications 复制限制
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Remove the copy restriction on displayspecifications.com, 解除 displayspecifications 复制限制
// @author       You
// @license MIT
// @match        *.displayspecifications.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
// 选择所有的 header 标签
var headerElements = document.querySelectorAll('header');
headerElements.forEach(function(element) {
  element.contentEditable = true;
});

// 选择所有的 .section-header 的父级元素
var sectionHeaderParentElements = document.querySelectorAll('.section-header');
sectionHeaderParentElements.forEach(function(element) {
  var parentElement = element.parentNode;
  element.contentEditable = true;
});

// 选择所有的 #model-brief-specifications 元素
var modelBriefSpecificationsElements = document.querySelectorAll('#model-brief-specifications');
modelBriefSpecificationsElements.forEach(function(element) {
  element.contentEditable = true;
});
    // 选择所有的 .model-information-table 元素
var modelInformationTableElements = document.querySelectorAll('.model-information-table');
modelInformationTableElements.forEach(function(element) {
  element.contentEditable = true;
});
// 选择所有的 .model-comparison-table 元素
var modelComparisonTableElements = document.querySelectorAll('.model-comparison-table');
modelComparisonTableElements.forEach(function(element) {
  element.contentEditable = true;
});


})();