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

Commit 5d78240

Browse files
committed
v1.1.1
1 parent 4aeab94 commit 5d78240

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

identity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function postUser(publicKey) {
99
}
1010

1111
const handleMessage = (message) => {
12-
const trusted_parent_origins = ['https://bitclout.com', 'https://node.deso.org', 'https://diamondapp.com']
12+
const trusted_parent_origins = ['https://bitclout.com', 'https://node.deso.org']
1313
if (!message.origin || !trusted_parent_origins.includes(message.origin)) return
1414
const {data: {publicKey: publicKey}} = message
1515
if (publicKey) postUser(publicKey)

manifest.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"name": "Recover Seed",
33
"description": "Recover your BitClout seed phrase",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"manifest_version": 3,
66
"author": "Paul Burke",
77
"content_scripts": [
88
{
99
"matches": [
10-
"https://bitclout.com/*",
11-
"https://diamondapp.com/*",
12-
"https://node.deso.org/*"
10+
"https://bitclout.com/settings",
11+
"https://node.deso.org/settings"
1312
],
1413
"js": [
1514
"main.js"

0 commit comments

Comments
 (0)