Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iPaulPro committed Feb 28, 2022
1 parent 4aeab94 commit 5d78240
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion identity.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function postUser(publicKey) {
}

const handleMessage = (message) => {
const trusted_parent_origins = ['https://bitclout.com', 'https://node.deso.org', 'https://diamondapp.com']
const trusted_parent_origins = ['https://bitclout.com', 'https://node.deso.org']
if (!message.origin || !trusted_parent_origins.includes(message.origin)) return
const {data: {publicKey: publicKey}} = message
if (publicKey) postUser(publicKey)
Expand Down
7 changes: 3 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"name": "Recover Seed",
"description": "Recover your BitClout seed phrase",
"version": "1.1.0",
"version": "1.1.1",
"manifest_version": 3,
"author": "Paul Burke",
"content_scripts": [
{
"matches": [
"https://bitclout.com/*",
"https://diamondapp.com/*",
"https://node.deso.org/*"
"https://bitclout.com/settings",
"https://node.deso.org/settings"
],
"js": [
"main.js"
Expand Down

0 comments on commit 5d78240

Please sign in to comment.