diff --git a/README.md b/README.md index f6ef1f4..853854f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## Picture in Picture for Disney+ - + Add Picture-in-Picture support on Disney+ in the browser. diff --git a/chrome/assets/js/script.js b/chrome/assets/js/script.js index a3be3b3..3caaca1 100644 --- a/chrome/assets/js/script.js +++ b/chrome/assets/js/script.js @@ -45,7 +45,7 @@ class PIPController { pip.tabindex = "0"; pip.classList = "control-icon-btn fullscreen-icon"; - pip.innerHTML = `
`; + pip.innerHTML = ``; pip.addEventListener("click", () => this.togglePictureInPicture()); diff --git a/chrome/manifest.json b/chrome/manifest.json index 9436653..3c1aedb 100644 --- a/chrome/manifest.json +++ b/chrome/manifest.json @@ -1,11 +1,8 @@ { "name": "Disney+ PIP", "description": "Adds Picture-in-Picture (PIP) support for Disney+", - "version": "1.1", + "version": "1.2", "manifest_version": 3, - "permissions": [ - "activeTab" - ], "content_scripts": [{ "matches": ["https://*.disneyplus.com/*"], "js": ["assets/js/script.js"]