bayas

Members
  • Posts

    53
  • Joined

  • Last visited

  • Days Won

    8

 Content Type 

Profiles

Forums

Release Notes

Bug Tracker

Help page

Help page-CN

Release Note5

Rules and recruitment

Release Note6

Everything posted by bayas

  1. I just want to inform about this problem. I can wait for stable Maxhon 5.3.8.x version. Old Stylish extension has a background service. I attached the mxaddon file. Stylish.mxaddon
  2. Maxthon backround services that you provided us in Extension API do not work anymore since Maxthon 5.3.8.x versions. There is a workaround for this annoying problem to force Maxthon Browser to run these extensions. So, every time I open the Maxthon Browser and then re-install them from *.mxaddon file.
  3. @Jubilar is right. If I try to open a link from QA, extensions don't work but otherwise they work. The reason of this problem is probably preventing the script's execution on pc-newtab.maxthon.com.
  4. Hi Mx Devs, You have probably added exceptions for some websites (youtube, twitter, facebook, maxthon etc.). My some extensions and user-scripts do not work anymore on them. You've blocked the script's injection or execution on some web pages. Is this your new policy or is it a unnoticed update? I will continue to stay in Maxthon v5.1.6.1000 version as long as these restrictions continue. If these restrictions are permanent, I will stop using Maxthon. Thanks.
  5. Hi @vladimer08 I wrote the following style for you. You can edit the scale value and aspect ratios what you need. @media screen and (device-aspect-ratio: 3440/1440) { .player[data-isfullscreen="true"] video { transform: scale(1.345) !important; -moz-transform: scale(1.345) !important; -ms-transform: scale(1.345) !important; -webkit-transform: scale(1.345) !important; } } @media screen and (device-aspect-ratio: 1920/1080) { .player[data-isfullscreen="true"] video { transform: scale(1.333) !important; -moz-transform: scale(1.333) !important; -ms-transform: scale(1.333) !important; -webkit-transform: scale(1.333) !important; } } @media screen and (device-aspect-ratio: 1024/768) { .player[data-isfullscreen="true"] video { transform: scale(1) !important; -moz-transform: scale(1) !important; -ms-transform: scale(1) !important; -webkit-transform: scale(1) !important; } }
  6. You're welcome, I'm glad I was able to help. Actually you don't need media query starts with "@media..", you can only use inner style code. If you want to use your style in different devices, then update it like below. You may need to adjust scale amounts for each resolution. @media screen and (device-aspect-ratio: 3440/1440) { .html5-video-player.ytp-fullscreen video { -webkit-transform: scale(1.345) !important; } } @media screen and (device-aspect-ratio: 1920/1080) { .html5-video-player.ytp-fullscreen video { -webkit-transform: scale(1.333) !important; } } @media screen and (device-aspect-ratio: 1024/768) { .html5-video-player.ytp-fullscreen video { -webkit-transform: scale(1) !important; } }
  7. Hi, @nTrophy You don't have to wait any extension for this feature. Install Stylish extension and then add the following style. @media screen and (device-aspect-ratio: 21/9) { .html5-video-player.ytp-fullscreen video { -webkit-transform: scaleX(1.33) !important; } } Here is a screenshot how to do. Don't forget to add youtube's domain in "Rules" section.
  8. Some of UserScripts are not suitable to port for Maxthon addons. They sometimes request some dependencies or API calls (like GM_* stuffs). And they also have their update mechanism. Here is the reason why ViolentMonkey is the essential to do that. You cannot maintain this extension even If you get a help.
  9. bayas

    BS Detector

    No need to port of that extension. If you want to use it, follow these instructions: Install Violentmonkey on your Maxthon Browser. And then click this link. Violentmonkey will install for you.
  10. Actually, extension's page script does not show up in the content scripts section.
  11. Hello Maxthon, Some features of extension that I realized are not supported anymore in this core (Chrome 55). Do you think you are going to resolve them in the official release. - I cannot inspect the page script of extension in the "Content Scripts" section. - "mx.app.runtime.AppAction.activate()" does not work anymore. (Showing Panel from the page script). It was the most important thing that makes Maxthon a better Browser as compared to other chrome-based Browsers.
  12. You can only send or receive a message from one action (toolbar script) to another (page script) or vice versa. For example; Toolbar script: var mxRuntime = window.external.mxGetRuntime(); function getMessageFromPage(obj) { console.log('message: ' + obj); } mxRuntime.listen('messageFromPage', getMessageFromPage); var button = document.getElementsByTagName("button")[0]; button.onclick = function(e) { mxRuntime.post('messageFromToolbar', 'Hi from Toolbar!'); } Page script: var mxRuntime = window.external.mxGetRuntime(); function getMessageFromToolbar(obj) { console.log('message: ' + obj); } mxRuntime.listen('messageFromToolbar', getMessageFromToolbar); mxRuntime.post('messageFromPage', 'Hi from Page Script!');
  13. In javascript environment, If your variable is not a boolean, every value of variable represents true except "0" string, undefined or null value. You must compare storage value to what you need. var mxRuntime = window.external.mxGetRuntime(), mxStorage = mxRuntime.storage, mxTabs = mxRuntime.create('mx.browser.tabs'); var activate = mxStorage.getConfig('openTab') == 'true'; mxTabs.newTab({ url: url, activate: activate, position:"afterCurrrent" });
  14. @Galileusz I've read it before. I wanted to say: it should be packaged alongside the zip format to be able to install this extension more easily.
  15. I fixed some bugs, now all beatufiers works for styles and sources. ViewPage3.0.2.mxaddon
  16. Why did not you share it as a package. Anyway I packed it for you ViewPage3.0.2.mxaddon
  17. If you just want to download the videos on Youtube. Install Violentmonkey and then go to KeepVid site and install "KeepVid Helper" script.
  18. 3 months later and still no solution...
  19. Don't use local html file like panel.$.htm After the release of Maxthon 4.9.x, extension framework hasn't supported them. You must do it manually. For example; en.ini [lang] app.title=Title app.description=Description panel.htm <!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title data-lang="app.title">Title</title> </head> <body> <div data-lang="app.description">Description</div> </body> <script type="text/javascript" src="js/jquery.min.js"></script> <script> var rt = window.external.mxGetRuntime(); var i18n = rt.locale.t; jQuery(document).ready(function() { // localize. jQuery("[data-lang]").each(function(index, item) { var key = jQuery(this).attr("data-lang"); jQuery(this).text(i18n(key)); }); }); </script> </html>
  20. 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.
  21. http://extension.maxthon.com/server/go.php?guid={YOUR-EXTENSION-GUID-NUMBER-HERE}
  22. Daha once uzantinin turkce ve ingilizce destegi vardi, buna ek olarak rusca, fransizca ve ispanyolca dilleri de eklendi. Ayrica daha once pasif hale getirdigim bir kac ozelligide aktiflestirdim. bundan sonra panel penceresi uzerindeki kapama ve pin ikonlarini da kullanabileceksiniz. eger paneli pencere uzerinde bulunan kapama ikonu ile kapatirsaniz, uzanti kendini durdurup calismayacak ta ki tekrar kenar cubugundan uzerine tiklanincaya kadar. bir de paneli artik kenarda sabitleyebileceksiniz pencere uzerindeki pin ikonunu kullanarak.
  23. Thank you for contributing. I sent a new package that contains of russian and spanish localization. I also activated "allowPin" and "stopOnClose" features in the extension.