Skip to content

Commit

Permalink
fix: fix manifest for firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
yamadashy committed Jan 2, 2024
1 parent afee885 commit 808f1bb
Showing 1 changed file with 27 additions and 10 deletions.
37 changes: 27 additions & 10 deletions app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,9 @@
"background": {
"service_worker": "scripts/background.js"
},
"__firefox__background": {
"scripts": [
"scripts/background.js"
]
},
"permissions": [
"scripting"
],
"host_permissions": [
"http://app.slack.com/*",
"https://app.slack.com/*"
],
"web_accessible_resources": [
{
"resources": [
Expand All @@ -61,5 +52,31 @@
"https://app.slack.com/*"
]
}
]
],

"__chrome|opera|edge|safari__host_permissions": [
"http://app.slack.com/*",
"https://app.slack.com/*"
],

"__firefox__manifest_version": 2,
"__firefox__background": {
"scripts": [
"scripts/background.js"
]
},
"__firefox__permissions": [
"scripting",
"http://app.slack.com/*",
"https://app.slack.com/*"
],
"__firefox__web_accessible_resources": [
"fonts/SlackChannelsGrounping-NotoSansJP-Medium.ttf"
],
"__firefox__browser_specific_settings": {
"gecko": {
"id": "{24d54390-97ea-4c57-b4be-7e32232ca609}",
"strict_min_version": "102.0"
}
}
}

0 comments on commit 808f1bb

Please sign in to comment.