I have built a web extension addon for Firefox and Chrome. In Chrome, the address bar is empty, which is why I want Firefox too.
If I click on "new tab", the following URL is set on the address bar: moz-extension://5a4137a2-ede8-4f1d-838c-20069831ab38/index.html. Can I change this to something else? An empty address bar would be great.
This is my manifest.json
...
"chrome_url_overrides" : {
"newtab": "index.html"
},
"permissions": [
"activeTab"
],
...