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.
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.
-
Can Firefox(for Android) Alwayes enable addon?
-
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,