File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,24 @@ window.chrome.webRequest.onCompleted.addListener(
88
88
{ urls : [ 'http://*/*' , 'https://*/*' ] } ,
89
89
) ;
90
90
91
+ // window.chrome.tabs.onUpdated.addListener(tabId => {
92
+ // window.chrome.permissions.contains(
93
+ // {
94
+ // origins: ['http://*/*', 'https://*/*'],
95
+ // },
96
+ // granted => {
97
+ // if (granted) {
98
+ // if (tabId >= 0) {
99
+ // window.chrome.tabs.executeScript(tabId, {
100
+ // file: 'content.js',
101
+ // allFrames: true,
102
+ // });
103
+ // }
104
+ // }
105
+ // },
106
+ // );
107
+ // });
108
+
91
109
const getClipboardData = ( ) => {
92
110
const clipBoardInput = document . createElement ( 'input' ) ;
93
111
clipBoardInput . style = 'position: absolute;' ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ const denominations = {
23
23
default : {
24
24
BTC : {
25
25
USD : {
26
- price : 4999 ,
26
+ price : 7500 ,
27
27
sign : 'USD' ,
28
28
precision : 2 ,
29
29
precisionMax : 5 ,
You can’t perform that action at this time.
0 commit comments