您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name PreformeBingeSearche // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://workplace.clickworker.com/en/clickworker/jobs/128765/edit // @match https://workplace.clickworker.com/en/clickworker/jobs/130069/edit // @grant none // ==/UserScript== (function() { 'use strict'; jQuery("#task_info_1").show(); jQuery("#task_wait_1").show(); jQuery("#worked").show(); jQuery("#task_one_1").show(); jQuery("#task_two_1").show(); jQuery("#task_three_1").show(); jQuery(".subpages").show(); jQuery('#task_one_1').show(); jQuery('#task_two_1').show(); var searchterm = document.getElementsByTagName('font')[2].textContent; var followsearch = document.getElementsByTagName('font')[6].textContent; searchterm = searchterm.replace(/\s/g, '%20'); followsearch = followsearch.replace(/\s/g, '%20'); var searchwindow = window.open('https://www.bing.com/images/search?q='+followsearch, "searcher", "width=600, height=800, top=0, left=110"); document.getElementsByTagName('textarea')[0].textContent = 'https://www.bing.com/images/search?q='+searchterm; document.getElementsByTagName('textarea')[1].textContent = 'https://www.bing.com/images/search?q='+followsearch; document.getElementsByTagName('textarea')[2].oninput = function(){document.getElementsByName('submit_job')[0].click();searchwindow.close();}; // Your code here... })();