Skip to content

Commit

Permalink
Merge branch 'upgrade/manifest'
Browse files Browse the repository at this point in the history
  • Loading branch information
Juicetan committed Jun 15, 2024
2 parents dc48e83 + 20d7df6 commit 29a9543
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 9 deletions.
21 changes: 21 additions & 0 deletions app/base/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
position: fixed;
bottom: 49px;
left: 10px;
z-index: 1;
.atvwebplayersdk-fastseekback-button,
.atvwebplayersdk-playpause-button,
.atvwebplayersdk-fastseekforward-button{
Expand Down Expand Up @@ -139,4 +140,24 @@
.atvwebplayersdk-bottompanel-container{
padding-left: 200px;
}
}
.atvwebplayersdk-player-container{
.hideUntilCssLoaded{
.xrayQuickView{
.xrayQuickViewList{
&.show{
position: fixed;
top: 51px;
bottom: 68%;
overflow-y: auto;
opacity: 0.2;
transition: opacity 0.1s linear, bottom 0.5s ease;
&:hover{
bottom: 108px;
opacity: 1;
}
}
}
}
}
}
2 changes: 1 addition & 1 deletion dist/content.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 13 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
{
"name": "Video Controls",
"version": "1.1.2",
"version": "1.2.0",
"description": "Re-styling of Prime Video playback controls to be less intrusive.",
"icons": {
"128": "images/logoIcon.png"
},
"content_scripts": [
{
"matches": ["https://primevideo.com/*","https://www.primevideo.com/*","https://amazon.com/*","https://www.amazon.com/*"],
"js": ["dist/content.js"]
"matches": [
"https://primevideo.com/*",
"https://www.primevideo.com/*",
"https://amazon.com/*",
"https://www.amazon.com/*"
],
"js": [
"dist/content.js"
]
}
],
"page_action": {
"action": {
"default_icon": {
"128": "images/logoIcon.png"
}
},
"permissions": [
"https://primevideo.com/"
"activeTab"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://*.cloudflare.com; object-src 'self'",
"manifest_version": 2
"manifest_version": 3
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "videouicontrols",
"version": "1.1.2",
"version": "1.2.0",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 29a9543

Please sign in to comment.