Skip to content

Commit 9d778aa

Browse files
committed
2.0.5
1 parent 02728fc commit 9d778aa

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

src/manifest-mv2.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"version": "2.0.0",
32
"minimum_chrome_version": "56",
43
"manifest_version": 2,
54
"permissions": [

src/manifest-mv3.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"version": "3.0.4",
32
"minimum_chrome_version": "128",
43
"manifest_version": 3,
54
"permissions": [

src/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Stylus",
3-
"version": "",
3+
"version": "2.0.5",
44
"minimum_chrome_version": "",
55
"description": "__MSG_description__",
66
"homepage_url": "https://add0n.com/stylus.html",

webpack.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,7 @@ function makeManifest(files) {
282282
else if (old && typeof old === 'object') Object.assign(old, val);
283283
else base[key] = val;
284284
}
285+
base.version = (MV3 ? 3 : 2) + base.version.slice(1);
285286
return JSON.stringify(base, null, 2);
286287
}
287288

0 commit comments

Comments
 (0)