Skip to content

Commit

Permalink
#1074 - Extension is freezing some Youtube pages
Browse files Browse the repository at this point in the history
#846 - Infinite Recursion on Some Video
  • Loading branch information
Anarios committed Aug 26, 2024
1 parent a42df5b commit c8f23b2
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 26 deletions.
33 changes: 25 additions & 8 deletions Extensions/combined/manifest-chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"host_permissions": ["*://*.youtube.com/*"],
"permissions": ["storage"],
"host_permissions": [
"*://*.youtube.com/*"
],
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
},
Expand All @@ -23,18 +27,31 @@
"*://www.youtube.com/*",
"*://m.youtube.com/*"
],
"exclude_matches": ["*://*.music.youtube.com/*"],
"js": ["ryd.content-script.js"],
"css": ["content-style.css"]
"exclude_matches": [
"*://*.music.youtube.com/*"
],
"js": [
"ryd.content-script.js"
],
"css": [
"content-style.css"
]
}
],
"externally_connectable": {
"matches": ["*://*.youtube.com/*"]
"matches": [
"*://*.youtube.com/*"
]
},
"web_accessible_resources": [
{
"resources": ["ryd.script.js"],
"matches": ["*://*.youtube.com/*"]
"resources": [
"ryd.script.js",
"menu-fixer.js"
],
"matches": [
"*://*.youtube.com/*"
]
}
],
"options_ui": {
Expand Down
38 changes: 26 additions & 12 deletions Extensions/combined/manifest-firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"version": "__RYD_VERSION__",
"manifest_version": 2,
"background": {
"scripts": ["ryd.background.js"]
"scripts": [
"ryd.background.js"
]
},
"icons": {
"48": "icons/icon48.png",
Expand All @@ -22,22 +24,34 @@
},
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"exclude_matches": ["*://*.music.youtube.com/*"],
"matches": [
"*://*.youtube.com/*"
],
"exclude_matches": [
"*://*.music.youtube.com/*"
],
"run_at": "document_idle",
"css": ["content-style.css"],
"js": ["ryd.content-script.js"]
"css": [
"content-style.css"
],
"js": [
"ryd.content-script.js"
]
}
],
"options_ui": {
"page": "popup.html",
"open_in_tab": false
}
// uncomment this section for local storage to work in firefox locally
// ,"browser_specific_settings": {
// "gecko": {
// "id": "[email protected]",
// "strict_min_version": "42.0"
// }
},
"web_accessible_resources": [
"menu-fixer.js"
]

// uncomment this section for local storage to work in firefox locally,
// ,"browser_specific_settings": {
// "gecko": {
// "id": "[email protected]",
// "strict_min_version": "42.0"
// }
// }
}
61 changes: 61 additions & 0 deletions Extensions/combined/menu-fixer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
function debounceAsync(func, wait, renderer) {
let timeout;
let lastCallTime = 0;

return async function (...args) {
const context = this;
const now = Date.now();

if (!lastCallTime || now - lastCallTime > wait) {
// If the last call was long enough ago or this is the first call, execute immediately
lastCallTime = now;
return await func.apply(context, args);
} else {
// Hide all optional menu items - prevents endless loop
if (renderer?.polymerController?.flexAsTopLevelButtons) {
renderer.polymerController.flexAsTopLevelButtons = [];
}

// Otherwise, delay the call
return new Promise((resolve) => {
clearTimeout(timeout);
timeout = setTimeout(async () => {
lastCallTime = Date.now();
resolve(await func.apply(context, args));
}, wait);
});
}
};
}

const fixYtdMenuRenderer = (ytdMenuRenderer) => {
if (!ytdMenuRenderer?.polymerController?.maybeUpdateFlexibleMenuImpl) {
return;
}
const originalMaybeUpdateFlexibleMenuImpl = ytdMenuRenderer.polymerController.maybeUpdateFlexibleMenuImpl.bind(
ytdMenuRenderer.polymerController,
);

ytdMenuRenderer.polymerController.maybeUpdateFlexibleMenuImpl = debounceAsync(
originalMaybeUpdateFlexibleMenuImpl,
100,
ytdMenuRenderer,
);
};

const fixedYtdMenuRenderers = [];
const observer = new MutationObserver(() => {
const ytdMenuRenderers = [...document.querySelectorAll("ytd-menu-renderer")].filter(
(el) => !fixedYtdMenuRenderers.includes(el),
);
if (!ytdMenuRenderers.length) return;

for (const el of ytdMenuRenderers) {
fixYtdMenuRenderer(el);
fixedYtdMenuRenderers.push(el);
}
});
observer.observe(document.documentElement, {
subtree: true,
childList: true,
});
14 changes: 9 additions & 5 deletions Extensions/combined/ryd.content-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ import { isShorts, setInitialState, initExtConfig } from "./src/state";

//--- Import Video & Browser Functions ---//
import { getBrowser, isVideoLoaded, cLog } from "./src/utils";
import {
addLikeDislikeEventListener,
createSmartimationObserver,
storageChangeHandler,
} from "./src/events";
import { addLikeDislikeEventListener, createSmartimationObserver, storageChangeHandler } from "./src/events";

await initExtConfig();

Expand Down Expand Up @@ -47,3 +43,11 @@ document.addEventListener("yt-navigate-finish", async function (event) {
if (jsInitChecktimer !== null) clearInterval(jsInitChecktimer);
await setEventListeners();
});

const s = document.createElement("script");
s.src = chrome.runtime.getURL("menu-fixer.js");
s.onload = function () {
this.remove();
};
// see also "Dynamic values in the injected code" section in this answer
(document.head || document.documentElement).appendChild(s);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "return-youtube-dislike",
"version": "3.0.0-16",
"version": "3.0.0-17",
"description": "Chrome extension to return youtube dislikes",
"main": "ryd.content-script.js",
"scripts": {
Expand Down

0 comments on commit c8f23b2

Please sign in to comment.