From 7dcd1bcbe433d99c55d9966f677168e63c6826f4 Mon Sep 17 00:00:00 2001 From: ktg5 <42522603+ktg5@users.noreply.github.com> Date: Mon, 18 Sep 2023 01:37:35 -0700 Subject: [PATCH] Fixed #3 (v1.2.1) --- html/release-note.html | 11 ++++++++--- manifest.json | 12 +++++++----- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/html/release-note.html b/html/release-note.html index 81c7ac1..e6684c3 100644 --- a/html/release-note.html +++ b/html/release-note.html @@ -13,15 +13,20 @@
-
+

PlayerTube has been updated to

+
  • Fixed #3 -- "Extension doesn't work on embeds"
  • +
    +
    +
    +

    Past versions...

    +
    +
    v1.2
  • Extension is accepted on Firefox.
  • Fixed #2 -- "moveElement function slowing everything down"
  • Fixed an issue in the settings popup where settings won't load. -- This was solved by making the popup's script make a new config if the user doesn't have one already.

  • -
    -

    Past versions...

    v1.1
  • First version to be uploaded on web-stores! (Chrome & Firefox)
  • diff --git a/manifest.json b/manifest.json index 7532d23..82dd247 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "PlayerTube", "description": "The secret ingredient for a older (and better) looking YouTube.", - "version": "1.2", + "version": "1.2.1", "homepage_url": "https://github.com/ktg5/PlayerTube", "background": { @@ -16,13 +16,15 @@ "content_scripts": [ { - "matches": ["*://*.youtube.com/*"], + "matches": ["*://*.youtube.com/*", "*://*.youtube.com/embed/*"], "js": ["setup.js"], - "run_at": "document_start" + "run_at": "document_start", + "all_frames": true }, { - "matches": ["*://*.youtube.com/*"], - "js": ["main.js"] + "matches": ["*://*.youtube.com/*", "*://*.youtube.com/embed/*"], + "js": ["main.js"], + "all_frames": true } ],