Greasemonkey incelemeleri
Greasemonkey geliştiren: Anthony Lieuallen
Firefox kullanıcısı 12324300 adlı kullanıcının incelemesi
5 üzerinden 1 puan
yazan: Firefox kullanıcısı 12324300, 7 yıl önceTried 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 inceleme
- 5 üzerinden 1 puanyazan: Dan, 25 gün öncegrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19638054, 2 ay önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19625368, 2 ay önce
- 5 üzerinden 1 puanyazan: Firefox kullanıcısı 19617462, 2 ay önce
- 5 üzerinden 5 puanyazan: Robin Filer, 3 ay öncethe 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 üzerinden 5 puanyazan: kranitbeisser, 6 ay önceErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19145735, 7 ay önce
- 5 üzerinden 5 puanyazan: Galwayguy1, 7 ay önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19072892, 7 ay önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 15244311, 8 ay önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19026513, 8 ay önce
- 5 üzerinden 1 puanyazan: Firefox kullanıcısı 17681293, 8 ay önce
- 5 üzerinden 5 puanyazan: Ronald, 10 ay önce
- 5 üzerinden 5 puanyazan: Federico, 10 ay önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 18903740, 10 ay önce