stackoverflow.com의 사이드 바에서 가장 먼저 좋아하는 링크를 클릭하려고합니다.페이지가 Greasemonkey 스크립트로 끝없이 상쾌하게 유지됩니다.
이 스크립트를 발견했지만 문제는 페이지가 계속해서 상쾌하게 유지된다는 것입니다.
이 동작을 멈출 방법이 있습니까?
// ==UserScript==
// @name _ChromeC
// @include *//stackoverflow.com/*
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a major design
change introduced in GM 1.0.
It restores the sandbox.
*/
waitForKeyElements ("#interestingTags a", actionFunction);
function actionFunction (jNode) {
var clickEvent = document.createEvent ('MouseEvents');
clickEvent.initEvent ('click', true, true);
jNode[0].dispatchEvent (clickEvent);
}
제거 스크립트 처음 후에? – melpomene
무엇을 의미합니까? – Floppy88
불명확 한 점은 무엇입니까? – melpomene