Skip to content

Commit

Permalink
Update manifest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
R0NAM1 committed Oct 22, 2024
1 parent 11e7108 commit da9f655
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 70 deletions.
63 changes: 27 additions & 36 deletions chromeClient/manifest.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,32 @@
{
"manifest_version": 3,
"name": "SimpleCast Client",
"version": "1.2",

"description": "HTTP and WebRTC compliant Chrome extension for SimpleCast servers. https://github.com/R0NAM1/SimpleCast",

"icons": {
"48": "logo-pallete-48.png",
"96": "logo-pallete-96.png"
},

"permissions": [
"activeTab"
],

"host_permissions": [
"manifest_version": 3,
"name": "SimpleCast Client",
"version": "1.3",
"description": "HTTP and WebRTC compliant Chrome extension for SimpleCast servers. https://github.com/R0NAM1/SimpleCast",
"icons": {
"48": "logo-pallete-48.png",
"96": "logo-pallete-96.png"
},
"permissions": [
"activeTab"
],
"host_permissions": [
"<all_urls>"
],

"background": {
"service_worker": "windowPopup.js",
"type": "module"
},

"action": {
"default_icon": "logo-pallete-48.png",
"default_title": "Open SimpleCast UI"
},

"content_security_policy": {
],
"background": {
"service_worker": "windowPopup.js",
"type": "module"
},
"action": {
"default_icon": "logo-pallete-48.png",
"default_title": "Open SimpleCast UI"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},

"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}

60 changes: 26 additions & 34 deletions firefoxClient/manifest.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,34 @@
{
"manifest_version": 3,
"name": "SimpleCast Client",
"version": "1.2",

"description": "HTTP and WebRTC compliant Firefox extension for SimpleCast servers. https://github.com/R0NAM1/SimpleCast",

"icons": {
"48": "logo-pallete-48.png",
"96": "logo-pallete-96.png"
},

"permissions": [
"activeTab"
],

"host_permissions": [
"manifest_version": 3,
"name": "SimpleCast Client",
"version": "1.3",
"description": "HTTP and WebRTC compliant Firefox extension for SimpleCast servers. https://github.com/R0NAM1/SimpleCast",
"icons": {
"48": "logo-pallete-48.png",
"96": "logo-pallete-96.png"
},
"permissions": [
"activeTab"
],
"host_permissions": [
"<all_urls>"
],

"background": {
"scripts": ["windowPopup.js"],
"type": "module"
},

"action": {
"default_icon": "logo-pallete-48.png",
"default_title": "Open SimpleCast UI"
},

"content_security_policy": {
],
"background": {
"scripts": [
"windowPopup.js"
],
"type": "module"
},
"action": {
"default_icon": "logo-pallete-48.png",
"default_title": "Open SimpleCast UI"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},

"browser_specific_settings": {
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}

}

0 comments on commit da9f655

Please sign in to comment.