Skip to content

Commit

Permalink
Merge pull request #156 from casper-ecosystem/New-Integrations
Browse files Browse the repository at this point in the history
New App Integrations
  • Loading branch information
George-cl authored Oct 11, 2021
2 parents 1266914 + a600b9c commit 37eba7a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "casperlabs-signer",
"version": "1.4.0",
"version": "1.4.1",
"private": true,
"dependencies": {
"@babel/core": "^7.14.6",
Expand Down Expand Up @@ -132,4 +132,4 @@
"webextension-polyfill-ts": "^0.12.0",
"webpack-cli": "^3.3.11"
}
}
}
21 changes: 15 additions & 6 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"manifest_version": 2,
"version": "1.4.0",
"version": "1.4.1",
"name": "CasperLabs Signer",
"author": "https://casperlabs.io",
"description": "CasperLabs Signer tool for signing transactions on the blockchain.",
Expand All @@ -20,7 +20,7 @@
"content_scripts": [
{
"matches": [
"*://*.casperlabs.io/*",
"*://*.casperlabs.io/*",
"*://localhost/*",
"*://*.make.services/*",
"*://cspr.live/*",
Expand All @@ -30,14 +30,23 @@
"*://casperholders.com/*",
"*://*.casperholders.com/*",
"*://*.casperstats.io/*",
"*://casperstats.io/*"
"*://casperstats.io/*",
"*://casper-qr.vercel.app/*",
"*://picaswap.io/wcspr/*",
"*://casperdash.io/*"
],
"js": [
"./scripts/content/content.js"
],
"js": ["./scripts/content/content.js"],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": ["notifications", "storage", "tabs"],
"permissions": [
"notifications",
"storage",
"tabs"
],
"web_accessible_resources": [
"scripts/content/inpage.js",
"scripts/content/signerTestMethods.js",
Expand All @@ -53,4 +62,4 @@
},
"default_title": "CasperLabs Signer"
}
}
}

0 comments on commit 37eba7a

Please sign in to comment.