zork

MX Master
  • Posts

    363
  • Joined

  • Last visited

  • Days Won

    45

 Content Type 

Profiles

Forums

Release Notes

Bug Tracker

Help page

Help page-CN

Release Note5

Rules and recruitment

Release Note6

Posts posted by zork

  1. Hi, everybody!

    Russian translation can be found in the attach. If you find errors and bugs, write in the thread or PM, I'll try to correct promptly.

    Thanks. 

    RA - 1ucaoj3ef$mx

    ru.ini => 7.1.7.8100

    ru.ini => 7.1.7.8200

    ru.ini => 7.1.7.8400

    ru.ini => 7.1.7.8600

    ru.ini=> 7.1.7.8800

    ru.ini=> 7.1.7.9200

    ru.ini=> 7.1.8.6000

    ru.ini=> 7.1.8.6400

    ru.ini=> 7.1.8.6601

    ru.ini=> 7.1.8.6800

    ru.ini=> 7.1.8.7000

    ru.ini=> 7.1.8.7001

    ru.ini=> 7.1.8.7200

    ru.ini=> 7.1.8.7600

    • Like 1
  2. 13 hours ago, t_rAt said:

    The standard extension Translator does not work correctly.

    Portable Maxthon_5.2.5.600-beta

    Translator module has changed in 5.2.5. The updated skin in beta stage. I will upload it ASAP.

    • Like 2
  3. 33 minutes ago, ßouЯock™ said:

    Please don't forget to add the Tab Manager strings to Crowdin before the new release!!!

    Tab Manager is extension and takes translation from corresponding strings in extension locale folder. You can make it by yourself. It will be faster. For example, for the Russian language: 

    [lang]
    app.title=Менеджер вкладок
    app.description=Удобное средство просмотра и управления вкладками
    paneltitle=Менеджер вкладок
    app.tabManager=Менеджер вкладок
    app.closeAllTabs=Закрыть все
    app.refreshTabList=Обновить все

    Or you can replace original addon with new one from the attach.

    ru-ru.ini

    tabmanager.mxaddon

  4. On 03.01.2018 at 11:39 PM, chz(232466) said:

    Slim navigation and statusbar ?  ts same as defoult skin

    You're wrong.

    On 01.01.2018 at 2:48 AM, SnowLeopard said:

    If I read Zork correctly, Arowana skin is Snapper adapted for MX5 with lessons learned from Snapper.  @Zork, did I read you correctly?

    You're right.

    :Smiling_Face_Emoji_with_Blushed_Cheeks_42x42:

    5.1.5.2000 update with some mods (icons in tab menu added)

    • Like 1
  5. New Arowana skin for Maxthon 5.2.5.600-beta. Skin is similar to my Snapper 2. Slim navigation and statusbar. Search engine in address bar, new menu, modded tab menu and a lot of other features. Enjoy.

     

    Untitled-1 copy.jpg

    Arowana_5.1.4.3000_forum.7z

    Arowana_5.1.5.2000_forum.7z

    Arowana_5.1.6.1000_forum.7z

    Arowana_5.1.6.3000_forum.7z

    Arowana_5.2.0.2000_forum.7z

    Arowana_5.2.3.1000_forum.7z

    Arowana_5.2.3.3000_forum.7z

    Arowana_5.2.5.600b_forum.7z

    • Like 18
  6. The internal command cmd.lockBrowser is not new. It was in M4. And you are right -  it wasn't listed in SDK, but it works. Other commands starting with cmd.xxxx not working in extension too.

    I would very much like to hear comments from dev's on this issue. 

  7. Does anyone know how to execute a browser lock command from an extension? The command works fine from the menu item, it can be assigned to a button, but it does not start from the extension. What could be the reason? For example, to run from the icon, the code will be like this:

    <div class="item lock" mx-click="cmd.lockBrowser" title="$cmd.lockBrowser$" >
            <div class="icon"/>   
     </div>

    But in the extension the same code doesn't work:

        "actions": [
            {   "type": "mxcmd",
                "entryPoints": ["toolbar"],
                    "cmd": "cmd.lockBrowser"        }    ]

    And without the cmd too:

        "actions": [
            {          "type": "mxcmd",
                "entryPoints": ["toolbar"],
                    "cmd": "lockBrowser"     }    ]

    What's wrong???

  8. 4 years ago I already made an extension for this translator. (http://extension.maxthon.com/detail/index.php?view_id=1992&category_id=)

    It is based on the bookmarklet. But we can use widget code from M$

    <div id='MicrosoftTranslatorWidget' class='Dark' style='color:white;background-color:#555555'></div><script type='text/javascript'>setTimeout(function(){{var s=document.createElement('script');s.type='text/javascript';s.charset='UTF-8';s.src=((location && location.href && location.href.indexOf('https') == 0)?'https://ssl.microsofttranslator.com':'http://www.microsofttranslator.com')+'/ajax/v3/WidgetV3.ashx?siteData=ueOIGRSKkd965FeEGM5JtQ**&ctf=False&ui=true&settings=Manual&from=';var p=document.getElementsByTagName('head')[0]||document.documentElement;p.insertBefore(s,p.firstChild); }},0);</script>

     

    And another old Bing extension based on M$ API - http://extension.maxthon.com/detail/index.php?view_id=1575&category_id=

  9. 6 hours ago, Wilser said:

    Through extensions I do not think it is possible, what if possible is to change the color of all the icons of the extensions by using skins.

    in skin_c_dark.css

    
    @import url(skin_c_dark_const.css);
    
    [skinDark] {
    	style-set: "custom-skin-dark";
    }
    
    @set custom-skin-dark {
    
    .quicktools .item .icon {
    	foreground-image-transformation: colorize(red);
    }
    
    }

    in skin.css

    
    .quicktools .item .icon {
    	foreground-image-transformation: colorize(blue);
    }



     

    That was the was the first thing I did, but unfortunately it does not work. And tag !important  is also useless.