Skip to content

Commit

Permalink
Update extension version & strict minimum version
Browse files Browse the repository at this point in the history
JSON also standardized (sorted keys and 2 spaces indent)
  • Loading branch information
VoidTwo committed Oct 8, 2022
1 parent 5074aef commit c2d9337
Showing 1 changed file with 30 additions and 35 deletions.
65 changes: 30 additions & 35 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,33 @@
{
"manifest_version": 2,
"version": "1.3",
"name": "Dark Theme Chroma",
"short_name": "Dark Chroma",
"description": "Clean dark theme with chroma RGB lighting",

"developer":
{
"name": "VoidTwo",
"url": "https://github.com/VoidTwo/Dark-Theme-Chroma-Firefox"
},

"icons":
{
"16": "icons/icon_16x16.png",
"32": "icons/icon_32x32.png",
"48": "icons/icon_48x48.png",
"64": "icons/icon_64x64.png",
"96": "icons/icon_96x96.png",
"128": "icons/icon_128x128.png"
},

"browser_specific_settings":
{
"gecko":
{
"strict_min_version": "89.0a1"
}
},

"permissions": ["alarms", "theme"],

"background":
{
"scripts": ["background.js"]
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"strict_min_version": "100.0"
}
},
"description": "Clean dark theme with chroma RGB lighting",
"developer": {
"name": "VoidTwo",
"url": "https://github.com/VoidTwo/Dark-Theme-Chroma-Firefox"
},
"icons": {
"128": "icons/icon_128x128.png",
"16": "icons/icon_16x16.png",
"32": "icons/icon_32x32.png",
"48": "icons/icon_48x48.png",
"64": "icons/icon_64x64.png",
"96": "icons/icon_96x96.png"
},
"manifest_version": 2,
"name": "Dark Theme Chroma",
"permissions": [
"alarms",
"theme"
],
"short_name": "Dark Chroma",
"version": "1.4"
}

0 comments on commit c2d9337

Please sign in to comment.