296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
const oGrammalecteBackgroundPort = {
bConnected: false,
xConnect: browser.runtime.connect({name: "content-script port"}),
start: function () {
console.log("[Grammalecte] background port: start.");
this.listen();
this.listen2();
//this.ping();
},
restart: function () {
console.log("[Grammalecte] try to reconnect to the background.")
|
|
|
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
|
const oGrammalecteBackgroundPort = {
bConnected: false,
xConnect: browser.runtime.connect({name: "content-script port"}),
start: function () {
//console.log("[Grammalecte] background port: start.");
this.listen();
this.listen2();
//this.ping();
},
restart: function () {
console.log("[Grammalecte] try to reconnect to the background.")
|