This commit is contained in:
TheBrokenRail 2022-03-20 17:15:37 -04:00
parent 367f91e294
commit aa9dcf5adf
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 2, "manifest_version": 2,
"name": "Force High-Resolution DisneyNOW", "name": "Force High-Resolution DisneyNOW",
"author": "TheBrokenRail", "author": "TheBrokenRail",
"version": "1.1", "version": "1.2",
"description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks DisneyNOW ads.)", "description": "This browser extension forces DisneyNOW to use their higher-resolution video stream by imitating the Android app. (It also blocks DisneyNOW ads.)",
"homepage_url": "https://gitea.thebrokenrail.com/TheBrokenRail/force-high-resolution-disneynow", "homepage_url": "https://gitea.thebrokenrail.com/TheBrokenRail/force-high-resolution-disneynow",
"content_scripts": [ "content_scripts": [

View File

@ -50,7 +50,7 @@ function addResolutionInfo(player) {
let p = document.getElementById(id); let p = document.getElementById(id);
if (!p) { if (!p) {
// Create // Create
const p = document.createElement('P'); p = document.createElement('P');
p.id = id; p.id = id;
// Add <p> element to DOM. // Add <p> element to DOM.