Ulasan untuk Enhancer for YouTube™
Enhancer for YouTube™ oleh Maxime RF
Tinjauan oleh Pengguna Firefox 17996102
Diberi peringkat 5 dari 5
oleh Pengguna Firefox 17996102, sebulan yang lalu11.891 ulasan
- Diberi peringkat 2 dari 5oleh Helge, 11 jam yang laluIt was a good add-on, however recently it started to break YT shorts (no comments section, Likes etc.
- Diberi peringkat 5 dari 5oleh Mari, 11 jam yang lalu
- Diberi peringkat 5 dari 5oleh 敬念法轮大法好远离瘟疫, 14 jam yang lalu
- Diberi peringkat 5 dari 5oleh Rashad AlSalahi, 18 jam yang lalu
- Diberi peringkat 5 dari 5oleh Pengguna Firefox 15538667, sehari yang lalu
- Diberi peringkat 4 dari 5oleh ΑΘΑΝΑΣΟΠΟΥΛΟΣ ΑΝΑΣΤΑΣΙΟΣ, sehari yang lalu
- Diberi peringkat 5 dari 5oleh JunKo™, sehari yang lalu
- Diberi peringkat 1 dari 5oleh a., 2 hari yang laluSadly it doesn't work properly anymore as the developer has stopped updating this extension on Firefox.
- Diberi peringkat 5 dari 5oleh BinaraGta, 3 hari yang laluGrate & Help-full
Thank you for made this addon <3 - Diberi peringkat 1 dari 5oleh Paul, 3 hari yang laluThis was a great add-on until the developer stopped updating it. Now it's interrupting videos for me, and they have decided they won't update to the same version as their other browsers because they don't like the review policy. This is bizarre, since Firefox is the only remaining major browser with a liberal extension API, and most developers are having to burn down their extensions on Chrome instead.
- Diberi peringkat 2 dari 5oleh Pengguna Firefox 18759000, 3 hari yang laluWorks great on normal videos but entirely breaks yt shorts, cant see any of the like-dislike and comments icon. Please release a patch 🙏
- Diberi peringkat 5 dari 5oleh Pengguna Firefox 18897420, 4 hari yang lalu
- Diberi peringkat 5 dari 5oleh Pengguna Firefox 18183016, 4 hari yang lalu
- Diberi peringkat 3 dari 5oleh Pengguna Firefox 18896042, 5 hari yang laluOnce the ad block was deleted, the only thing that this was useful for was to be able put a music video on repeat. Today that was deleted too. So I deleted this add on.
- Diberi peringkat 4 dari 5oleh aquakittie, 5 hari yang laluUsually works great with my Firefox browser, but now comments on YouTube Shorts won't open. Looks like the this needs an update.
- Diberi peringkat 5 dari 5oleh ten, 5 hari yang lalu
- Diberi peringkat 1 dari 5oleh Pengguna Firefox 14048954, 6 hari yang laluprobably needs an update....does not work anymore
- Diberi peringkat 5 dari 5oleh Pengguna Firefox 16131950, 6 hari yang lalu
- Diberi peringkat 5 dari 5oleh Pengguna Firefox 17151549, 7 hari yang laluProbably my favourite extension together with uBlock Origin. Makes Youtube a lot better and the customisation options are great
- Diberi peringkat 5 dari 5oleh Pengguna Firefox 12369994, 9 hari yang lalu
- Diberi peringkat 1 dari 5oleh Pengguna Firefox 14743303, 10 hari yang laluThis addon no longer functions at all. I don't know if youtube is blocking it or the newest Mercury release broke it.
- Diberi peringkat 4 dari 5oleh Say my name, 10 hari yang laluthe Extension is a must have for everyone using YouTube, one thing to mention the Extension doesn't load properly all the times I'm using a FireFox fork, found people online complaining about the same thing, hope the dev addresses this issue in the NEXT update
Edit: a turn around fix that I use for now is a costume script
first install the Tampermonkey extension
second use this costume script(dont forget to edit the youtube and tampermonkey links):
// ==UserScript==
// @name Force Enhancer for YouTube
// @namespace past tampermonkey link here/
// @version 0.1
// @description Ensure Enhancer for YouTube loads consistently
// @author You
// @match past youtube link here /*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Function to check if Enhancer for YouTube is loaded
function checkEnhancerYouTube() {
// Look for specific elements that Enhancer for YouTube creates
const enhancerLoaded = document.querySelector('#enhancer-for-youtube-controls') ||
document.querySelector('[id^="enhancer-for-youtube"]');
if (!enhancerLoaded) {
console.log('Enhancer for YouTube not detected, forcing reload...');
// Create a temporary element to trigger mutation observers
const trigger = document.createElement('div');
trigger.id = 'enhancer-youtube-trigger';
trigger.style.display = 'none';
document.body.appendChild(trigger);
// Dispatch events that might wake up the extension
window.dispatchEvent(new Event('resize'));
document.dispatchEvent(new Event('readystatechange'));
// Clean up and try again
setTimeout(() => {
trigger.remove();
checkEnhancerYouTube();
}, 2000);
}
}
// Run after YouTube has loaded
if (document.readyState === 'complete') {
setTimeout(checkEnhancerYouTube, 3000);
} else {
window.addEventListener('load', () => {
setTimeout(checkEnhancerYouTube, 3000);
});
}
})();