Skip to content

Commit fce5901

Browse files
Merge branch 'release-0.11.1'
2 parents 2bc050c + 09ae602 commit fce5901

File tree

3 files changed

+42
-25
lines changed

3 files changed

+42
-25
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Persistent Video/Audio Volume
22

33
<a href="https://chrome.google.com/webstore/detail/persistent-video-volume/ppoliijncpdcgddmfibmgnjhegceaadj" target="_blank">
4-
<img src="https://storage.googleapis.com/chrome-gcs-uploader.appspot.com/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/mPGKYBIR2uCP0ApchDXE.png" height="60px"/>
4+
<img src="https://storage.googleapis.com/web-dev-uploads/image/WlD8wC6g8khYWPJUsQceQkhXSlv1/mPGKYBIR2uCP0ApchDXE.png" height="60px"/>
55
</a>
66
<a href="https://addons.mozilla.org/firefox/addon/persistent-video-audio-volume/?src=external-github" target="_blank">
77
<img src="https://blog.mozilla.org/addons/files/2015/11/get-the-addon.png" height="60px"/>

manifest.json

Lines changed: 40 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,42 @@
11
{
2-
"name" : "Persistent Video/Audio Volume",
3-
"version" : "0.11.0",
4-
"manifest_version" : 2,
5-
"description" : "Saves video and audio volume",
6-
"permissions": ["storage", "tabs", "<all_urls>"],
7-
"icons": {
8-
"48": "icon48.png",
9-
"128": "icon128.png"
10-
},
11-
"content_scripts": [
12-
{
13-
"matches": ["<all_urls>"],
14-
"css": [],
15-
"js": ["contentscript.js"]
16-
}
17-
],
18-
"browser_action": {
19-
"default_popup": "popup.html",
20-
"default_icon": {
21-
"16": "icon16.png",
22-
"32": "icon32.png"
23-
}
2+
"name": "Persistent Video/Audio Volume",
3+
"version": "0.11.1",
4+
"manifest_version": 3,
5+
"description": "Saves video and audio volume",
6+
"permissions": [
7+
"storage",
8+
"tabs"
9+
],
10+
"host_permissions": [
11+
"<all_urls>"
12+
],
13+
"icons": {
14+
"48": "icon48.png",
15+
"128": "icon128.png"
16+
},
17+
"content_scripts": [
18+
{
19+
"matches": [
20+
"<all_urls>"
21+
],
22+
"css": [],
23+
"js": [
24+
"contentscript.js"
25+
]
2426
}
25-
26-
}
27+
],
28+
"action": {
29+
"default_popup": "popup.html",
30+
"default_icon": {
31+
"16": "icon16.png",
32+
"32": "icon32.png"
33+
}
34+
},
35+
"content_security_policy": {},
36+
"browser_specific_settings": {
37+
"gecko": {
38+
"id": "{6f06a23b-cde8-478b-b1b9-f559bb3e9e84}",
39+
"strict_min_version": "109.0"
40+
}
41+
}
42+
}

popup.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
width: 300px;
99
padding: 0px;
1010
margin: 0px;
11+
background-color: antiquewhite;
1112
}
1213
</style>
1314
</head>

0 commit comments

Comments
 (0)