Wilser

Members
  • Posts

    352
  • Joined

  • Last visited

  • Days Won

    44

 Content Type 

Profiles

Forums

Release Notes

Bug Tracker

Help page

Help page-CN

Release Note5

Rules and recruitment

Release Note6

Posts posted by Wilser

  1. 23 minutes ago, PHYR said:

    When clicking on Bing logo in popup, the text is not entered on bing translator(even if the text is selected, not selected in image). It does work if use "Translate Selected Text" from icon drop down

    The bing image that appears at the top of the popup is just a logo. To translate the selected text use the drop-down menu of the extension.

    23 minutes ago, PHYR said:

    And one question, it seems this extension is always running(as evidenced when hovering different languages for instance), is it using much resources?

    When executing the extension several times. If the resource consumption rises, but this is a mistake that I will correct now :):)

    25 minutes ago, PHYR said:

    bing.png

    Sorry in some sections of this forum extension does not work well :(

  2. This translator is an alternative to standard translators built into Maxthon 5.

    With this extension you can automatically translate web pages into the language the browser is in without leaving the current page, you can also translate the selected text into a new tab from the drop-down menu of the extension.

    Supported Languages:

    • Chinese (Simplified)
    • Chinese (Traditional)
    • English - United Kingdom
    • English - United States
    • French - France
    • German - Germany
    • Italian - Italy
    • Korean - Korea
    • Polish - Poland
    • Portuguese - Brazil
    • Portuguese - Portugal
    • Russian - Russia
    • Spanish - Argentina
    • Spanish - Mexico
    • Spanish - Spain
    • Turkish - Turkey

     

    Bing Translator.mxaddon

    • Like 4
  3. 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);
    }



     

    • Like 2
  4. 8 hours ago, PHYR said:

    Is the status bar also painted? With skin number one the status bar flashes but is not painted.

    Also, is it possible to add our own images as a skin?

    • Of course the status bar also changes color.

    • If it refers to using own images as background. if possible!

    • Like 3
  5. Please move this entry to the extensions section

    Bookmarklet: 

    Tittle: Clear Cookies

    Script: 

    javascript:void((function(){var cookie_list,sub_domain,location_pathname,cookie_index,cookie_count;cookie_count=0;cookie_list=document.cookie.split("; ");for(cookie_index=0;cookie_index<cookie_list.length&&cookie_list[cookie_index];cookie_index++){cookie_count++;for(sub_domain="."+location.host;sub_domain;sub_domain=sub_domain.replace(/^(?:\.|[^\.]+)/,"")){for(location_pathname=location.pathname;location_pathname;location_pathname=location_pathname.replace(/.$/,"")){document.cookie=(cookie_list[cookie_index]+"; domain="+sub_domain+"; path="+location_pathname+"; expires="+new Date((new Date()).getTime()-1e11).toGMTString());}}}alert("Expired "+cookie_count+" cookies");})())