Compare commits

..

2 commits

Author SHA1 Message Date
1ff293ccf3
Bump version 2023-03-17 19:27:34 -04:00
de26c23498
Fix max bitrate selection 2023-03-17 19:26:15 -04:00
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Netflix International",
"description": "Displays all available Netflix audio and subtitle tracks.",
"version": "2.0.19",
"version": "2.0.20",
"author": "shirt",
"browser_action": {
"default_icon": "img/icon128.png",

View file

@ -6,7 +6,7 @@ let getElementByXPath = function (xpath) {
};
let fn = function () {
const VIDEO_SELECT = getElementByXPath("//div[text()='Video Bitrate']");
const VIDEO_SELECT = getElementByXPath("//div[text()='Video Bitrate']") || getElementByXPath("//div[text()='Video Bitrate / VMAF']");
const AUDIO_SELECT = getElementByXPath("//div[text()='Audio Bitrate']");
const BUTTON = getElementByXPath("//button[text()='Override']");