File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -574,7 +574,7 @@ async function initExtension(){
574574 checkPermissions ( ) ;
575575 let permissionsCheckInterval = setInterval ( checkPermissions , 1000 ) ;
576576 }
577- return logData ( "info" , "EXTENSION INITILISATION COMPLETE" ) ;
577+ return await logData ( "info" , "EXTENSION INITILISATION COMPLETE" ) ;
578578 }
579579}
580580
@@ -604,7 +604,13 @@ if (typeof window == 'undefined') { //The javascript equivilant of `if __name__
604604 }
605605 } ) ;
606606
607- chrome . runtime . onStartup . addListener ( initExtension ) ;
608- chrome . runtime . onInstalled . addListener ( initExtension ) ;
607+ /*chrome.runtime.onStartup.addListener(initExtension);
608+ chrome.runtime.onInstalled.addListener(initExtension);*/
609+ chrome . runtime . onStartup . addListener ( async ( ) => {
610+ await logData ( "info" , "EXTENSION STARTUP" ) ;
611+ } ) ;
612+ chrome . runtime . onInstalled . addListener ( async ( ) => {
613+ await logData ( "info" , "EXTENSION INSTALL SUCCESS" ) ;
614+ } ) ;
609615 initExtension ( ) ;
610616}
Original file line number Diff line number Diff line change 11{
22 "manifest_version" : 3 ,
33 "name" : " Ignite DMA" ,
4- "version" : " 1.1.3 " ,
4+ "version" : " 1.1.4 " ,
55 "author" : " AzlanCoding" ,
66 "description" : " A Device Manager Application (DMA) for students under MOE" ,
77 "homepage_url" : " https://ignitedma.mooo.com/" ,
Original file line number Diff line number Diff line change 11<?xml version =' 1.0' encoding =' UTF-8' ?>
22<gupdate xmlns =' http://www.google.com/update2/response' protocol =' 2.0' >
33 <app appid =' clhnfaboginbheghbebffggbdnijjika' >
4- <updatecheck codebase =' https://ignitedma.mooo.com/assets/service/chrome_extension/v1.1.3 .crx' version =' 1.1.3 ' />
4+ <updatecheck codebase =' https://ignitedma.mooo.com/assets/service/chrome_extension/v1.1.4 .crx' version =' 1.1.4 ' />
55 </app >
66</gupdate >
You can’t perform that action at this time.
0 commit comments