-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1074 - Extension is freezing some Youtube pages
#846 - Infinite Recursion on Some Video
- Loading branch information
Showing
5 changed files
with
122 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,9 @@ | |
"version": "__RYD_VERSION__", | ||
"manifest_version": 2, | ||
"background": { | ||
"scripts": ["ryd.background.js"] | ||
"scripts": [ | ||
"ryd.background.js" | ||
] | ||
}, | ||
"icons": { | ||
"48": "icons/icon48.png", | ||
|
@@ -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" | ||
// } | ||
// } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters