Netflix - subtitle downloader

Allows you to download subtitles from Netflix

< Σχολιασμός για τον κώδικα Netflix - subtitle downloader

Αναφορά: Καλός - ο κώδικας λειτουργεί

§
Δημοσιεύτηκε: 08/11/2024

The extension is not working at all now

The menu is not showing at all

§
Δημοσιεύτηκε: 08/11/2024

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.

§
Δημοσιεύτηκε: 08/11/2024

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

§
Δημοσιεύτηκε: 08/11/2024

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

§
Δημοσιεύτηκε: 08/11/2024

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

§
Δημοσιεύτηκε: 08/11/2024

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

§
Δημοσιεύτηκε: 08/11/2024

thanks

Tithen-FirionΔημιουργός
§
Δημοσιεύτηκε: 08/11/2024

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!

§
Δημοσιεύτηκε: 08/11/2024

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

§
Δημοσιεύτηκε: 09/11/2024

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

§
Δημοσιεύτηκε: 09/11/2024

version 4.2.5 is working

thank you

Δημοσίευση απάντησης

Συνδεθείτε για να δημοσιεύσετε μια απάντηση.