I am trying to set up permission for Chrome so it can ask for webRequest.
However, if I add the permission like in the manual here http://developer.chrome.com/extensions/webRequest.html
{
"name": "My extension",
...
"permissions": [
"webRequest",
"*://*.google.com"
],
...
}
All I get from Chrome is
There were warnings when trying to install this extension: Permission '://.google.com' is unknown or URL pattern is malformed.
Where is the error in the manual, what should I do differently?
Google is missing slash after the address. This works.
{
"name": "My extension",
...
"permissions": [
"webRequest",
"*://*.google.com/"
],
...
}
I... am not sure where to report the bug to google exactly.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With