Hi there,
I have already published my extension "
goo.gl URL Shortener extension" and yesterday its extension supported Web Intents. It can receive the action "
http://webintents.org/shorten", and I could find it in the application list which are supporting Web Intents on the following page. Therefore, I think that my extension is recognized by Chrome Web store as an extension supported Web Intents.
However, when I tried my extension on the following page for testing, my extension wasn't listed up in the popup window where applications and extensions which can receive the target intent is displayed. Why was my extension not recommended? I could not understand the difference between my extension and two displayed extensions.
I wrote the definition of the intent into the manifest.json as the following:
...
"intents": {
"type": ["text/uri-list"],
"href": "./webintent.html",
"title": "
goo.gl URL Shortener extension",
"disposition": "inline"
} ]
}
...
How should I edit the manifest above to solve this problem?
Thanks,
-Yoichiro