Netflix - subtitle downloader

Allows you to download subtitles from Netflix

< Feedback on Netflix - subtitle downloader

Review: Good - script works

§
Posted: 2024-11-08

The extension is not working at all now

The menu is not showing at all

§
Posted: 2024-11-08

seconding this, console says:
Blocked script execution in 'about:blank' because the document's frame is sandboxed and the 'allow-scripts' permission is not set.

§
Posted: 2024-11-08

Can confirm, this started today. Tried in Opera and Firefox - same issue

§
Posted: 2024-11-08

same issue. anyone knew how to fixed this, please help

§
Posted: 2024-11-08

I have exactly the same problem :( I checked on Chrome, Firefox, Opera and Edge browsers.
Please help

§
Posted: 2024-11-08

Hello, I was able to find a temporary solution.

From line 598 to 606, I added and changed the following code:

const getBlobTxt = async (blob) => {
const result = await blob.text();
return result;
};

const processMessage = async (e) => {
const { type, data } = e.detail;
if (type === 'subs') {
processSubInfo(data);
} else if (type === 'id_override') {
idOverrides[data[0]] = data[1];
} else if (type === 'metadata') {
let txt = await getBlobTxt(data);
processMetadata(JSON.parse(txt));
}
};

§
Posted: 2024-11-08

thanks

§
Posted: 2024-11-08

Thanks, MasterMan2099! I don't have a Netflix acc currently so your snippet helped a lot! I decided to do the conversion in a different place though. Try version 4.2.5!

§
Posted: 2024-11-08

Thank you guys for your help :) It works on Google Chrome and Firefox

§
Posted: 2024-11-09

The version 4.2.5 is amazing, thank you so much for your help Tithen-Firion, you are the best.

§
Posted: 2024-11-09

version 4.2.5 is working

thank you

Post reply

Sign in to post a reply.