
orz
Members-
Content count
33 -
Joined
-
Last visited
Community Reputation
4 NeutralAbout orz
-
Rank
Freshman
Profile Information
- Gender Male
Recent Profile Visitors
1,204 profile views
-
mine got approved today. Thanks! It seems complain does take effect.
-
Mine is still in pending status after 2 weeks.
-
not really. I can read Chinese so I logged in by extension.maxthon.cn
-
extension.maxthon.cn can login though. strange ...
-
hmm, my panel.html can retrieve the text from en.ini file. However if I have another html like blocked.html, after I redirect current tab to this local html file, then locale cannot take any text from en.ini.
-
That is good to know. Thanks a lot. I will try that out. One more question :-). How can I access locale defined in en.ini file from a html defined in my extension? this local html is used for re-direction when a web url should be blocked. javascript embedded in that local html cannot load locale text from en.ini. Maybe I also missed something here?
-
I was trying to access http://extension.maxthon.com/ to submit my extension for review, however I cannot login with my maxthon passport. But I can login to my https://my.maxthon.cn/index.html As shown in the attched image. Can you please help to check? Thanks
-
Thanks. anyway I have tried a workaround, but that's not efficient and neat. Let us see whether Mx support or any extension developer will help.
-
anybody please?
-
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.
-
Hi, I would like to know what will be the url of my extension after it would be approved? I need to put that url into my extension's code. Thanks,
-
Hi, do we have any events to be used that I can do some update on my extension's panel html via javascript? I have tried DOMContebtLoaded, onload, onpageshow, all of above are only called once the panel is created. Do we have other events to be triggered whenever I click the sidebar icon to display my panel? Thanks
-
found the answer, the en.ini file format must be Unicode + BOM format.
-
OK, let me give it a try. Thanks
-
Hi Alex, One question about usage of locale. I added an en.ini file, then in my javascripts, I do following: var rt = window.external.mxGetRuntime(); var tt = rt.locale.t; alert(tt("THE_KEY_NAME")); but it does not work to resolve the value defined for THE_KEY_NAME in my en.ini [lang] THE_KEY_NAME=test name Could you please help? I am not sure where is the incorrect part here Thanks