Greasy Fork is available in English.
解除国家知识产权局网站通知书下载限制
当前为
// ==UserScript==
// @name 解除专利通知书下载限制
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 解除国家知识产权局网站通知书下载限制
// @author 北溟之鲲
// @match *://*.cnipa.gov.cn/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Define the CSS selector for the elements you want to modify
const targetSelector = '#download'; // Replace with your actual selector
// Get all matching elements
const elements = document.querySelectorAll(targetSelector);
// Loop through each element and change its display property
elements.forEach(element => {
element.style.display = 'block';
});
})();