Chrome Extension Permission URL pattern is malformed

Today I was learning how to create a Chrome Extension App and I got this warning after I set the permission in manifest.json.

Permission ‘http://192.168.1.100’ is unknown or URL pattern is malformed.

After searching for awhile, I finally figure out that I need to add slash at the end.

“permissions”: [
“http://192.168.1.100/”,
“http://192.168.1.101/”
],

And the warning is gone!

Read More