nice question. they need to explore that area. because they need to reach as many authors as they can to make their platform successful. and not only selling their masternode coins to get fast cash.
Authors would be damn happy with reward thing like this. I bet most of Reddit, 4chan and other places authors will use this extension.
BTW, will it support Facebook posts and comments?
Current Extension version (which is simply Proof of Concept prototype) replaces only TextNode and uses TreeWalker to do it fast. For example, a HTML code like:
this is
some text
content of "P" node
at DOM level (internally for Browser) will look like:
+HTMLParagraphElement("p")
|
----TextNode("this is")
|
----TextNode("some text")
|
----TextNode("content of....")
So right now Extension is adapted to generic publication where you can just put some text as part of more longer article.
Sites like
Facebook,
Youtube etc. uses own markup over HTML and often places text into some tags directly (pseudocode):
$XSCP(...)
Each such case must be handled individually. 'cause if we will test every tag on every page it will reduce performance on slow machines.
After we will finish and roll-out our fully working prototype we will start to add support for requested popular websites layout.
But only after we will finish current stage.