Skip to content

Commit

Permalink
Fixed #3 (v1.2.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktg5 committed Sep 18, 2023
1 parent bd8a40c commit 7dcd1bc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
11 changes: 8 additions & 3 deletions html/release-note.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,20 @@
</div>

<div class="text">
<div class="v1dot2">
<div class="v1dot2dot1">
<h2 class="showVersion">PlayerTube has been updated to </h2>
<li>Fixed <a href="https://github.com/ktg5/PlayerTube/issues/3">#3 -- "Extension doesn't work on embeds"</a></li>
</div>
<br>
<br>
<h3>Past versions...</h3>
<div class="v1dot2">
<div style="font-weight: 600;">v1.2</div>
<li>Extension is accepted on Firefox.</li>
<li>Fixed <a href="https://github.com/ktg5/PlayerTube/issues/2">#2 -- "<kbd>moveElement</kbd> function slowing everything down"</a></li>
<li>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.</li>
</div>
<br>
<br>
<h3>Past versions...</h3>
<div class="v1dot1">
<div style="font-weight: 600;">v1.1</div>
<li>First version to be uploaded on web-stores! (Chrome & Firefox)</li>
Expand Down
12 changes: 7 additions & 5 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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
}
],

Expand Down

0 comments on commit 7dcd1bc

Please sign in to comment.