SWFlash0
Members-
Posts
90 -
Joined
-
Last visited
Content Type
Profiles
Forums
Release Notes
Bug Tracker
Help page
Help page-CN
Release Note5
Rules and recruitment
Release Note6
Everything posted by SWFlash0
-
This worked for me:data:text/csv;charset=windows-1252,%FC;%E4;%F6This also works:data:text/csv;charset=windows-1252;base64,/DvkO/Y=
-
Want to know my opinion on this? 1. There shouldn't had been support for CSS in the AdHunter in the first place, even the name implies that it blocks advertisements, not enhances pages with your custom stylesheets. If you need that feature that badly, you can use Stylish extension, which, in my opinion, does this job much better 2. If you're concerned about browser performance, you can disable ABP entirely, or only disable its EasyList subscribtion 3. I do admit that concatenating the separated custom rules for all domains into one big list was a step in the wrong direction 4. The updated ABP syntax is easier to use (for example you don't need to put asterisks before and after rules and || substitutes for "http(s)://(www.)", as well as file type filtering) Conclusion: I have a feeling everyone in this thread has a baby duck syndrome
-
extension request Open multiple links using drag & drop
SWFlash0 replied to Dev CZ's topic in Extensions
There you go, a bookmarkletjavascript:a=getSelection().getRangeAt(0).cloneContents().querySelectorAll('a');for(b=0;b -
Review of Maxthon Nitro final [1.0.0.1000]
SWFlash0 replied to ghost z's topic in Archived General Discussion
It's laughable that you took your time and effort writing all of those smart words in your post -
There is a feature-less browsing mode already implemented in Maxthon since version 3. Open a tab that you want as a home page, right click that tab, select "Save as Quick App...", check "Send to destop" and there you have it. The tabs open in new windows, there are no extensions or ANY settings there, but it's also very fast
-
If you mean the new tab, all of the links were moved to a new page, look at the bottom. I don't really see any similarities between the new quick access and windows 8 start screen, in Maxthon the tiles are rounded and have shadows, windows 8 has all of the tiles very close together and has white icons above every title
-
Bug with local homepage and Youtube
SWFlash0 replied to fOrTune(r)'s topic in Archived General Discussion
This actually happens if you set Flash wmode to "GPU" in YouTube Center extension. Set it to "Opaque" to fix this -
See this Chromium bug that was resolved this spring: https://code.google.com/p/chromium/issues/detail?id=168840 Viewport units such as "vw" and "vh" can be used in CSS to set size of elements (width, height, border-width, etc), the same way px, em, and % do. calc() can be used with those values if you need to express a value that consists from the mix of those units. So if you need a width that is 30 pixels smaller than 50% of the container, you could just do "width: calc(50% - 30px);". Viewport values have their uses as well, for example "20vw" always evaluates to 20% of the width of the document (not container) and can be used even in height of an element. However, these values don't return anything when you try to use calc() on them in Maxthon. Other browsers indeed do support it and it's even shown in one of examples in the W3C specification You can test it here (check the red box in developer tools, it shows an error): https://bug-94158-attachments.webkit.org/attachment.cgi?id=158661
-
As you can see I have no problems on that page either. I remember there were other people posting a similar problem too
-
Wasn't too hard to find from all the unblurred text on the screenshot: http://aidancbrady.com/mekanism/download/ And everything is working fine there, but next time don't make it next to impossible for us to reproduce by blurring your URLs
-
This is another obscure issue of Maxthon. When Maxthon sees a character that is not in the selected font (the default I think is Arial, dont quote me on this) instead of outright displaying an empty box it tries to find a font that has this symbol, this is called font substitution. All is good up until this point. What you see in your example is some regular symbols together with combining unicode symbols "Combining low line" and "Combining overline". How does symbol combining work? Here's an example: "ẃ". I combined two symbols: the Latin small letter W and a Combining acute accent. That acute accent is actually a separate symbol and if you copy and paste it into a text editor and press backspace the acute accent disappears leaving you with only a letter "w". Now I'll try it with Latin capital letter W instead: "Ẃ". Notice how it's a little higher than it was before, here's the small W for comparison: "ẃẂ", the combining character adapts to the letter that stays before it (or sometimes after). Back to Maxthon, so we know how combining characters work, but why do they appear as boxes? Well obviously the font doesn't have these combining characters, but why doesn't it just use font substitution? Because that would be combining two fonts, and the combining characters can't adapt to the other font. Right, why other browsers display it correctly then? Because, surprise, they substitute the symbols beside the problem symbol as well so it doesn't break. So if one symbol in a word is not displaying properly in one font, and that symbol just happens to be a combining one, it would substitute the font for whole word. What I think Maxthon does is it substitutes the font for a single character and, because you can't put a combining symbol with no actual "non-combining" symbols around, it shows as an empty box.
-
Maxthon Cloud Browser V4.4.3.xxx downloader problem
SWFlash0 replied to animos's topic in Archived General Discussion
7twenty replied at 2014-12-4 08:31 How big are the files that are causing issues? I've downloaded a number of files varying from 10-35 ... The files themselves don't have to be big, you just need to download them for long enough time for that to happen -
How is the new version going? Any updates?
-
Using "new Image()" in extension creates wrong object
SWFlash0 replied to ElDoRado1239's topic in Archived General Discussion
Seriously? What is going on? Edit: Seriously now So what I can take from this, extension javascript uses some weird implementation of Image object in contrast to page javascript, it doesn't even return a node -
Using "new Image()" in extension creates wrong object
SWFlash0 replied to ElDoRado1239's topic in Archived General Discussion
Just post your whole code, because I can't reproduce it at all -
Using "new Image()" in extension creates wrong object
SWFlash0 replied to ElDoRado1239's topic in Archived General Discussion
Uh, again, you messed up the syntax of drawImage function, there are five required attributes that you need to set context.drawImage( , , , , ) As to why it work with img for you I have no idea -
I can't reproduce this, the ads start playing immediatly after page loaded, with and without cookies, with both HTML5 and Flash player. I didn't use extensions and AdHunter was subscribed to rules but nothing else
-
Using "new Image()" in extension creates wrong object
SWFlash0 replied to ElDoRado1239's topic in Archived General Discussion
Why are you trying to draw an empty image, anyway? First of all you need an src, then you need to add an onload event for the image element, and only then draw it on canvas, you also don't have width and height in drawImage function, here's an example how it should look like:var canvas=document.createElement('canvas') var context=canvas.getContext('2d') var image=new Image image.addEventListener('load',function(){ canvas.width=image.width canvas.height=image.height context.drawImage(image,0,0,image.width,image.height) }) image.src='http://my.imagecache.maxthon.com/avatar/2/065/2065060/1311276529.png' -
Eh, wrote this just now. Make a new bookmark as paste this as a URL:javascript:a=document.createElement('a');a.href='https://mail.google.com/mail/?view=cm&fs=1&body='+encodeURIComponent(location.href);a.target='_blank';a.click()I don't know if it works though as I don't have a Gmail account so you'll have to test it yourself. Go to any page and it's supposed to open Gmail with current URL pasted into the message body when you click on the bookmark
-
You can't block it with AdHunter becaue the popup script is in the HTML itself. There is a way to prevent it from happening through a greasemonkey script. Install this extension first: http://extension.maxthon.com/detail/index.php?view_id=1680 Then go to extension options, click on "New" button at the top and paste this:// ==UserScript== // @name TPB popup block // @include *://thepiratebay.* // @run-at document-start // @grant none // ==/UserScript== 'use strict'; var d=new Date() d.setDate(d.getDate()+1) document.cookie='tpbpop='+escape('1|'+d.toGMTString())+';expires='+d.toGMTString()+';path=/'Then click on "Save & Close" button at the bottom You can also add this to AdHunter to block the other scripts:* @@|*.css @@|*.png @@|*.jpg @@|*.gif
-
Looks like a User Agent issue, try to change it to IE
-
You can't install Maxthon extensions on Maxthon for Linux. You can, however, install Chrome extensions by downloading .crx files (not web store)
-
This has been reported before and it's still not fixed: http://forum.maxthon.com/thread-11820-1-1.html