私は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