opr.stash API: please offer the "create" method
-
zmwangx last edited by
For background information, see the
opr.stash
API doc: http://dev.opera.com/extensions/stash.html.I'm not sure if there are Opera devs or like-minded hackers around here, but here's the thing: Opera's stash is one of the major perks that distinguishes it from Chromium and Google Chrome. Although most people (I suspect) use it as a dumping field, I actually love it, and would like to add items to my stash through my extensions. However, currently there are only three methods:
get
: Retrieves details about the specified Stash item;query
: Gets all Stash items that have the specified properties, or all Stash items if no properties are specified;remove
: Removes the specified Stash item.
There's even an
onCreated
event, but simply no way to create without mouse clicking, AFAIK. With the introduction of heart menu, it is even more difficult to stash an item (although I've already disabled it).So, please implement the
create
method in the API. Thank you!