diff options
author | siikamiika <siikamiika@users.noreply.github.com> | 2020-03-03 00:05:01 +0200 |
---|---|---|
committer | siikamiika <siikamiika@users.noreply.github.com> | 2020-03-03 00:05:01 +0200 |
commit | 9ceb663f290f3167bd427171a4f5cc2116e1a765 (patch) | |
tree | cb1a6f551ffea7501426b8e4e1635a953b85f5f7 /ext | |
parent | e6347a94e7ff0b7a5c1db7e6f83f50d93c2d4545 (diff) |
add missing runtime message for backendPrepared
Diffstat (limited to 'ext')
-rw-r--r-- | ext/bg/js/backend.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 14b0aff1..0677b4b1 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -120,6 +120,7 @@ class Backend { this.clipboardMonitor.onClipboardText = this._onClipboardText.bind(this); this._sendMessageAllTabs('backendPrepared'); + chrome.runtime.sendMessage({action: 'backendPrepared'}); } _sendMessageAllTabs(action, params={}) { |