Отзывы на «Greasemonkey»
Greasemonkey от Anthony Lieuallen
Отзывы Пользователь Firefox 12324300
Оценено на 1 из 5
от Пользователь 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 292 отзыва
- Оценено на 5 из 5от Diana Mcbride, 3 месяца назад
- Оценено на 5 из 5от lolifeflow, 4 месяца назад
- Оценено на 5 из 5от Jessica Cherry, 4 месяца назадI've tried several alternatives and this one is by far the best. Straightforward and does the job perfectly.
- Оценено на 5 из 5от Amanda Baker, 4 месяца назадGreat extension, highly recommend. Simple to use and very reliable. No slowdowns, no crashes.
- Оценено на 5 из 5от Kelly Bryan, 4 месяца назадThis extension is fantastic. Super useful and well maintained. Exactly what I was looking for.
- Оценено на 5 из 5от Пользователь Firefox 19909981, 4 месяца назад
- Оценено на 5 из 5от Пользователь Firefox 19906142, 4 месяца назад
- Оценено на 4 из 5от ֆðཞཞðw, 4 месяца назад
- Оценено на 5 из 5от Пользователь Firefox 12734305, 5 месяцев назад
- Оценено на 5 из 5от a158w, 5 месяцев назад
- Оценено на 5 из 5от Пользователь Firefox 19883233, 5 месяцев назад
- Оценено на 5 из 5от zingo, 6 месяцев назад
- Оценено на 5 из 5от Пользователь Firefox 19690659, 7 месяцев назад
- Оценено на 1 из 5от Dan, 8 месяцев назадgrant not working... works fine with ViolentMonkey Fx addon though... ;(
this line below:
"// @grant GM_xmlhttpRequest" - Оценено на 5 из 5от Пользователь Firefox 19638054, 9 месяцев назад
- Оценено на 5 из 5от Chris, 9 месяцев назад
- Оценено на 5 из 5от layla, 9 месяцев назад
- Оценено на 5 из 5от secret, 9 месяцев назад
- Оценено на 5 из 5от Пользователь Firefox 19625368, 9 месяцев назад
- Оценено на 1 из 5от Пользователь Firefox 19617462, 9 месяцев назад
- Оценено на 5 из 5от Robin Filer, 10 месяцев назад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
- Оценено на 3 из 5от SVT, 10 месяцев назад
- Оценено на 5 из 5от kranitbeisser, год назадErweiterung funktioniert da los, so wie ich mir das vorstelle. Danke für die gute Arbeit