Skip to content

Commit

Permalink
👷 build web
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed May 31, 2024
1 parent 7ff724a commit b72a31a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
11 changes: 7 additions & 4 deletions web/background.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
declare function findExtensionWindowId(): Promise<number | null>;
/// <reference types="chrome" />
declare function extensionUrl(): string;
declare function focusExtensionPopup(): Promise<boolean>;
declare function findExtensionTab(): Promise<chrome.tabs.Tab | null>;
declare function openExtensionPopup(): Promise<void>;
declare function extensionPopupExists(): Promise<boolean>;
declare function isExtensionPopupReady(): Promise<boolean>;
declare function waitForExtensionPopup(): Promise<void>;
declare function isExtensionPopupOpened(): Promise<boolean>;
declare function areMultipleExtensionPopupsOpened(): Promise<boolean>;
declare function ensureExtensionPopupOpened(): Promise<void>;
4 changes: 2 additions & 2 deletions web/background.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
<script type="application/javascript" src="/assets/packages/flutter_inappwebview_web/assets/web/web_support.js"
defer></script>
<script type="application/javascript" src="popup_singleton_guard.js">
</script>
</head>

<body>
Expand Down
3 changes: 1 addition & 2 deletions web/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"version": "2.3.8.527",
"version": "2.3.8.528",
"content_security_policy": {
"extension_pages": "script-src 'self' ; object-src 'self'"
},
Expand Down Expand Up @@ -48,7 +48,6 @@
]
},
"action": {
"default_popup": "index.html",
"default_title": "Archethic Wallet",
"default_icon": {
"16": "icons/icon_16.png",
Expand Down
1 change: 1 addition & 0 deletions web/popup_singleton_guard.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b72a31a

Please sign in to comment.