Recenzie doplnku Greasemonkey
Greasemonkey Autor: Anthony Lieuallen
Recenzia od používateľa Používateľ Firefoxu - 12324300
Hodnotenie: 1 z 5
autor: Používateľ Firefoxu - 12324300, pred 7 rokmiTried 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 recenzií
- Hodnotenie: 1 z 5autor: Dan, pred mesiacomgrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 19638054, pred 2 mesiacmi
- Hodnotenie: 5 z 5autor: Chris, pred 2 mesiacmi
- Hodnotenie: 5 z 5autor: layla, pred 2 mesiacmi
- Hodnotenie: 5 z 5autor: secret, pred 2 mesiacmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 19625368, pred 2 mesiacmi
- Hodnotenie: 1 z 5autor: Používateľ Firefoxu - 19617462, pred 2 mesiacmi
- Hodnotenie: 5 z 5autor: Robin Filer, pred 3 mesiacmithe 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
- Hodnotenie: 5 z 5autor: super loo, pred 3 mesiacmi
- Hodnotenie: 3 z 5autor: SVT, pred 3 mesiacmi
- Hodnotenie: 5 z 5autor: user, pred 4 mesiacmi
- Hodnotenie: 5 z 5autor: kranitbeisser, pred 6 mesiacmiErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 19145735, pred 7 mesiacmi
- Hodnotenie: 5 z 5autor: Galwayguy1, pred 7 mesiacmi
- Hodnotenie: 5 z 5autor: jcvr1994, pred 7 mesiacmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 19072892, pred 8 mesiacmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 15244311, pred 8 mesiacmi
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 19026513, pred 8 mesiacmi
- Hodnotenie: 5 z 5autor: superyngo, pred 9 mesiacmi
- Hodnotenie: 1 z 5autor: Používateľ Firefoxu - 17681293, pred 9 mesiacmi
- Hodnotenie: 4 z 5autor: Alch, pred 10 mesiacmi
- Hodnotenie: 5 z 5autor: Ronald, pred 10 mesiacmi
- Hodnotenie: 5 z 5autor: Federico, pred rokom
- Hodnotenie: 5 z 5autor: Používateľ Firefoxu - 18903740, pred rokom