Hello,
I'm having trouble getting rid of the following error tooltip:
"Automatic credit card filling is disabled because this form does not use a secure connection."
However, my form is served via HTTPS.

My Chrome extension is structured as follows:
- My manifest.json declares a popup.html for the browser_action:
"browser_action": {
"default_popup": "popup.html"
- My popup.html only has
an iframe in it:
<html>
<body>
</body>
</html>
It contains a credit card form. Unfortunately, I cannot turn autocomplete off for it (it's Stripe, so it's locked behind another https iframe).
That being said, is there no way to use credit card autofill within a browser action's default popup?
And if not, is there any way to disable this warning for every user of the extension?