bypassbalabala

跳过知识产权局废话

Від 01.08.2018. Дивіться остання версія.

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 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.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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         bypassbalabala
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  跳过知识产权局废话
// @author       peasshoter
// @match        http://cpservice.sipo.gov.cn/home/toDisclaimer.action
// @match        http://cpquery.sipo.gov.cn/txnDisclaimerDetail.do?*
// @require      https://cdn.bootcss.com/jquery/3.1.1/jquery.min.js
// @grant        none
// ==/UserScript==

if (location.hostname === 'cpservice.sipo.gov.cn') {
    window.location.href="http://cpservice.sipo.gov.cn/dzsq/business.jsp?witchPage=2";
}
if (location.hostname === 'cpquery.sipo.gov.cn') {
    $('#agreeid').attr("checked","checked");
    $('#disagreeid').removeAttr("checked");
    $('#goBtn').removeAttr("disabled");
    $('#goBtn').click();
}