diff --git a/manifest.json b/manifest.json index 1e777be..5e6d5ea 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "name": "KittyCAD Diff Viewer", "description": "KittyCAD Diff Viewer Chrome Extension", - "version": "0.1.5", + "version": "0.2.0", "manifest_version": 3, "action": { "default_popup": "index.html", @@ -12,7 +12,9 @@ "48": "logo192.png", "128": "logo192.png" }, - "permissions": ["storage"], + "permissions": [ + "storage" + ], "host_permissions": [ "https://github.com/", "https://api.github.com/", @@ -21,8 +23,12 @@ ], "content_scripts": [ { - "matches": ["https://github.com/*"], - "js": ["src/chrome/content.ts"], + "matches": [ + "https://github.com/*" + ], + "js": [ + "src/chrome/content.ts" + ], "all_frames": false, "run_at": "document_end" } diff --git a/package.json b/package.json index f0df001..5891065 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "diff-viewer-extension", - "version": "0.1.5", + "version": "0.2.0", "private": true, "dependencies": { "@dicebear/avatars": "^4.10.8", @@ -40,7 +40,7 @@ "build": "vite build", "test": "vitest", "e2e": "yarn build && yarn playwright test", - "bump": "echo \"$(jq --arg v \"$VERSION\" '.version=$v' package.json --indent 4)\" > package.json && echo \"$(jq --arg v \"$VERSION\" '.version=$v' public/manifest.json --indent 4)\" > public/manifest.json" + "bump": "echo \"$(jq --arg v \"$VERSION\" '.version=$v' package.json --indent 4)\" > package.json && echo \"$(jq --arg v \"$VERSION\" '.version=$v' manifest.json --indent 4)\" > manifest.json" }, "eslintConfig": { "extends": [