Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit ecc3001

Browse files
committed
Add metadata for release
Add 'package' command to generate zip file Add link to store listing to README Update version to 1.0.0 Change-Id: I520736aa09e05bc73ffdfa9db828c9461ee50c40
1 parent c2e9b62 commit ecc3001

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ dist/
22
node_modules/
33
.parcel-cache/
44
yarn.lock
5-
.DS_Store
5+
.DS_Store
6+
bundle.zip

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Interactive Canvas DevTools is a Chrome DevTools extension for debugging an [Int
44

55
## Usage
66

7-
You can install the extension from the Chrome Web Store.
7+
You can install the extension from the
8+
[Chrome Web Store](https://chrome.google.com/webstore/detail/interactive-canvas-devtoo/pkjknimohoicpbkkgdhbdhcgnbcdefhk).
89

910
Once installed, you can open your Interactive Canvas project in your web browser, either from a hosted URL or localhost. In Chrome DevTools, find the **Interactive Canvas** tab and select it.
1011

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": {
44
"name": "Google LLC"
55
},
6-
"version": "0.0.0",
6+
"version": "1.0.0",
77
"private": true,
88
"license": "Apache-2.0",
99
"scripts": {
@@ -14,6 +14,7 @@
1414
"build:extension": "ng build",
1515
"fix": "ng lint --fix",
1616
"lint": "ng lint",
17+
"package": "cd dist/interactive-canvas-extension && zip bundle.zip * && mv bundle.zip ../../",
1718
"test": "npm run lint && npm run test:unit",
1819
"test:unit": "tsc --project tsconfig.ava.json && ava dist/tests/**/*.test.js",
1920
"watch": "ng build --watch --configuration development"

src/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "Interactive Canvas Extension",
3-
"description": "Interactive Canvas Extension!",
4-
"version": "0.0.0",
2+
"name": "Interactive Canvas DevTools",
3+
"description": "DevTools for Interactive Canvas",
4+
"version": "1.0.0",
55
"manifest_version": 3,
66
"permissions": ["storage", "activeTab", "scripting"],
77
"host_permissions": ["<all_urls>"],

0 commit comments

Comments
 (0)