Skip to content

Commit

Permalink
2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tophf committed Dec 11, 2024
1 parent 02728fc commit 9d778aa
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/manifest-mv2.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"version": "2.0.0",
"minimum_chrome_version": "56",
"manifest_version": 2,
"permissions": [
Expand Down
1 change: 0 additions & 1 deletion src/manifest-mv3.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"version": "3.0.4",
"minimum_chrome_version": "128",
"manifest_version": 3,
"permissions": [
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Stylus",
"version": "",
"version": "2.0.5",
"minimum_chrome_version": "",
"description": "__MSG_description__",
"homepage_url": "https://add0n.com/stylus.html",
Expand Down
1 change: 1 addition & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ function makeManifest(files) {
else if (old && typeof old === 'object') Object.assign(old, val);
else base[key] = val;
}
base.version = (MV3 ? 3 : 2) + base.version.slice(1);
return JSON.stringify(base, null, 2);
}

Expand Down

0 comments on commit 9d778aa

Please sign in to comment.