Leaderboard

Popular Content

Showing content with the highest reputation on 07/12/2016 in all areas

  1. You should create a background service in your extension in order to catch properly all of panel events. 1- Define service file in your def.json [ { . . "service": { main: "service.htm", debug: false } . . } ] 2- Catch events in service.htm. <!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <script> var rt = window.external.mxGetRuntime(); rt.onAppEvent = function (obj) { switch (obj.type) { case "ACTION_START": // panel started. break; case "ACTION_STOP": // panel stopped. break; case "ACTION_SHOW": // panel is shown. break; case "ACTION_HIDE": // panel is hidden. break; case "ERROR": console.log(obj.errorMessage); break; case "LOCALE_CHANGED": // locale changed. break; default: // do nothing. } }; </script> </head> <body> </body> </html> You can also debug your service by changing debug parameter.
    2 points
  2. http://extension.maxthon.com/server/go.php?guid={YOUR-EXTENSION-GUID-NUMBER-HERE}
    2 points
  3. Good, then you should be seeing something in your email soon. Just make sure you check your spam folder, just in case.
    1 point
  4. From time to time it does not work. Website issue. But it's the best way. I use it for feedback.
    1 point
  5. Well, I've uninstalled M4 already. Other than skin support it is missing very little. Heck of an alfa. Thanx team
    1 point
  6. I'd start watching your mailboxes, a few members of the Chinese forum have received their invites
    1 point
  7. Thanks a lot, that is what I am looking for. I would like to know the url before I submit the extension. bayas has helped to answer my question.
    1 point