From the link : http://developer.chrome.com/extensions/manifest/externally_connectable
I want to know what should be my valid matches pattern.
There is little confusion inside 'reference' block :
Patterns cannot include wildcard domains nor subdomains of (effective) top level domains;
*://google.com/*andhttp://*.chromium.org/*are valid, while<all_urls>,http://*/*,*://*.com/*, and evenhttp://*.appspot.com/*are not.
In above line what is the pattern difference between
http://*.chromium.org/*
and
http://*.appspot.com/*
And So why first one is valid and second one is not?
Edit : when i provide '*://*.mywebsite.com' it reflected as invalid manifest, however the same pattern is given as sample code for external_connectable, means should be a valid valid pattern, But actually validation fails.