Can Addons always be enabled on Firefox for Android(Beta and Nightry)?

I’m japanese. So, I’m not good at English.

Hi,

I created Add-on.

It’s simple Add-on. It’s Inject css if match url.

I want to using this Add-on at Firefox for Android(Beta and Nightry).
I see document.

https://support.mozilla.org/en-US/kb/extended-add-support

I could use Firefox for Android.
But, It’s enable when click Add-on icon.

I want to enable always without click.

I have a question.

  1. Can Firefox(for Android) Alwayes enable addon?

  2. If I wrong manifest setting, Cloud you tell me about it ?

Manifest.json (V3)


{

  "manifest_version": 3,

  "icons": {

    "16": "icons/icon-16.png",

    "48": "icons/icon-48.png",

    "128": "icons/icon-128.png"

  },

  "browser_specific_settings": {

    "gecko": {

      "id": "ci-en@iranika.info",

      "strict_min_version": "42.0"

    }

  },  

  "permissions": [],

  "host_permissions": [

    "https://ci-en.net/*"

  ],

  "action": {

    "default_title": "sfwc"

  },

  "content_scripts": [

    {

      "matches": [

        "https://ci-en.net/mypage"

      ],

      "css": [

        "assets/ci-en.net-mypage.css"

      ]

    }

  ],

  "content_security_policy": {

    "extension_pages": "script-src 'self'; object-src 'self';"

  },

  "web_accessible_resources": [

    {

      "resources": [

        "https://ci-en.net/*"

      ],

      "matches": [

        "https://ci-en.net/*"

      ]

    }

  ],

  "name": "sfwc",

  "short_name": "sfwc",

  "description": "generics sfw theme for ci-en",

  "version": "0.0.1"

}

Thanks,

No, I know how to install Add-on to Firefox for Android(Nightly and Beta).
I said, Can Firefox(for Android) “Alwayes enable” addon?
My manifest.json can’t run “Alwayes enable”. I don’t know how to fix it.

If you can alwayes enable addon, I want to know manifest.json settings.