Skip to content

Commit

Permalink
Merge branch 'release-0.11.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
puddingspudding committed Jul 7, 2024
2 parents 2bc050c + 09ae602 commit fce5901
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 25 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Persistent Video/Audio Volume

<a href="https://chrome.google.com/webstore/detail/persistent-video-volume/ppoliijncpdcgddmfibmgnjhegceaadj" target="_blank">
<img src="https://storage.googleapis.com/chrome-gcs-uploader.appspot.com/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/mPGKYBIR2uCP0ApchDXE.png" height="60px"/>
<img src="https://storage.googleapis.com/web-dev-uploads/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/mPGKYBIR2uCP0ApchDXE.png" height="60px"/>
</a>
<a href="https://addons.mozilla.org/firefox/addon/persistent-video-audio-volume/?src=external-github" target="_blank">
<img src="https://blog.mozilla.org/addons/files/2015/11/get-the-addon.png" height="60px"/>
Expand Down
64 changes: 40 additions & 24 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,42 @@
{
"name" : "Persistent Video/Audio Volume",
"version" : "0.11.0",
"manifest_version" : 2,
"description" : "Saves video and audio volume",
"permissions": ["storage", "tabs", "<all_urls>"],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": [],
"js": ["contentscript.js"]
}
],
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png"
}
"name": "Persistent Video/Audio Volume",
"version": "0.11.1",
"manifest_version": 3,
"description": "Saves video and audio volume",
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [],
"js": [
"contentscript.js"
]
}

}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"32": "icon32.png"
}
},
"content_security_policy": {},
"browser_specific_settings": {
"gecko": {
"id": "{6f06a23b-cde8-478b-b1b9-f559bb3e9e84}",
"strict_min_version": "109.0"
}
}
}
1 change: 1 addition & 0 deletions popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
width: 300px;
padding: 0px;
margin: 0px;
background-color: antiquewhite;
}
</style>
</head>
Expand Down

0 comments on commit fce5901

Please sign in to comment.