Greasemonkey のレビュー
Greasemonkey 作成者: Anthony Lieuallen
Firefox ユーザー 12324300 によるレビュー
5 段階中 1 の評価
Firefox ユーザー 12324300 によるレビュー (7年前)Tried to use a script multiple times with no success. Installed, reinstalled, made sure javascript is enabled. Under EDIT I added each site. No luck..It is a script for Disqus that is supposed to make clicking on (show all replies) open all of them.
This is the script :
// ==UserScript==
// @name Disqus Expand Replies Firefox 0.4
// @version 0.4
// @description Expand all 'Show more replies' links when one clicked
// @author Nerf
// @match https://disqus.com/embed/comments/*
// @run-at document-start
// ==/UserScript==
window.addEventListener('mousedown', function(event) {
if (event.target.className.indexOf('show-children')>-1) {
var ar = document.querySelectorAll('a.show-children:not(.expanded)');
for (var a of ar) {
a.className += " expanded";
a.click();
}
return;
}
});
OK I tried with another script change app and it's probably nothing wrong with Greasemonkey just a script that doesn't work- but since it was the only reason I needed it I uninstalled both apps.
This is the script :
// ==UserScript==
// @name Disqus Expand Replies Firefox 0.4
// @version 0.4
// @description Expand all 'Show more replies' links when one clicked
// @author Nerf
// @match https://disqus.com/embed/comments/*
// @run-at document-start
// ==/UserScript==
window.addEventListener('mousedown', function(event) {
if (event.target.className.indexOf('show-children')>-1) {
var ar = document.querySelectorAll('a.show-children:not(.expanded)');
for (var a of ar) {
a.className += " expanded";
a.click();
}
return;
}
});
OK I tried with another script change app and it's probably nothing wrong with Greasemonkey just a script that doesn't work- but since it was the only reason I needed it I uninstalled both apps.
合計レビュー数: 1,281
- 5 段階中 5 の評価Firefox ユーザー 19638054 によるレビュー (25日前)
- 5 段階中 5 の評価Firefox ユーザー 19625368 によるレビュー (1ヶ月前)
- 5 段階中 1 の評価Firefox ユーザー 19617462 によるレビュー (1ヶ月前)
- 5 段階中 5 の評価Robin Filer によるレビュー (2ヶ月前)the docs on the wiki are really obtuse and some of it is straight up outdated. But the recent updates have made it a lot better, and it's far more secure and well engineered than the other options available even if the ux is still pretty clunky
- 5 段階中 5 の評価kranitbeisser によるレビュー (5ヶ月前)Erweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- 5 段階中 5 の評価Firefox ユーザー 19145735 によるレビュー (6ヶ月前)
- 5 段階中 5 の評価Galwayguy1 によるレビュー (6ヶ月前)
- 5 段階中 5 の評価Firefox ユーザー 19072892 によるレビュー (7ヶ月前)
- 5 段階中 5 の評価Firefox ユーザー 15244311 によるレビュー (7ヶ月前)
- 5 段階中 5 の評価Firefox ユーザー 19026513 によるレビュー (7ヶ月前)
- 5 段階中 1 の評価Firefox ユーザー 17681293 によるレビュー (8ヶ月前)
- 5 段階中 5 の評価Firefox ユーザー 18903740 によるレビュー (10ヶ月前)