Netflix - subtitle downloader

Allows you to download subtitles from Netflix

< 脚本Netflix - subtitle downloader的反馈

评价:好评 - 脚本运行良好

发表于:2024-11-08

The extension is not working at all now

The menu is not showing at all

发表于: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.

发表于:2024-11-08

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

发表于:2024-11-08

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

发表于:2024-11-08

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

发表于: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 r###lt = await blob.text();
return r###lt;
};

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));
}
};

发表于:2024-11-08

thanks

发表于: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!

发表于:2024-11-08

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

发表于:2024-11-09

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

发表于:2024-11-09

version 4.2.5 is working

thank you

发表回复

登录以发表回复。