@@ -43,11 +43,10 @@ function isNumeric(str: string): boolean {
43
43
}
44
44
45
45
function installContentScript ( tabId : number ) {
46
- chrome . tabs . executeScript (
47
- tabId ,
48
- { file : '/build/contentScript.js' } ,
49
- function ( ) { }
50
- ) ;
46
+ chrome . scripting . executeScript ( {
47
+ target : { tabId : tabId } ,
48
+ files : [ '/build/contentScript.js' ] ,
49
+ } ) ;
51
50
}
52
51
53
52
function doublePipe ( one : any , two : any ) {
@@ -70,18 +69,18 @@ function doublePipe(one: any, two: any) {
70
69
}
71
70
72
71
function setIconAndPopup ( relayBuildType : string , tabId : number ) {
73
- chrome . browserAction . setIcon ( {
72
+ chrome . action . setIcon ( {
74
73
tabId : tabId ,
75
74
path : {
76
- '16' : `icons/${ relayBuildType } 16.png` ,
77
- '32' : `icons/${ relayBuildType } 32.png` ,
78
- '48' : `icons/${ relayBuildType } 48.png` ,
79
- '128' : `icons/${ relayBuildType } 128.png` ,
75
+ '16' : chrome . runtime . getURL ( `icons/${ relayBuildType } 16.png` ) ,
76
+ '32' : chrome . runtime . getURL ( `icons/${ relayBuildType } 32.png` ) ,
77
+ '48' : chrome . runtime . getURL ( `icons/${ relayBuildType } 48.png` ) ,
78
+ '128' : chrome . runtime . getURL ( `icons/${ relayBuildType } 128.png` ) ,
80
79
} ,
81
80
} ) ;
82
- chrome . browserAction . setPopup ( {
81
+ chrome . action . setPopup ( {
83
82
tabId : tabId ,
84
- popup : ' popups/' + relayBuildType + ' .html' ,
83
+ popup : chrome . runtime . getURL ( ` popups/${ relayBuildType } .html` ) ,
85
84
} ) ;
86
85
}
87
86
@@ -98,6 +97,7 @@ if (IS_FIREFOX) {
98
97
}
99
98
100
99
chrome . runtime . onMessage . addListener ( ( request , sender ) => {
100
+ console . log ( 'we want to enable it' , request , sender ) ;
101
101
if ( sender . tab ) {
102
102
// This is sent from the hook content script.
103
103
// It tells us a renderer has attached.
0 commit comments