-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Universal package (MV2 for FF and MV3 for Chrome)
- Loading branch information
1 parent
4290065
commit 97918d5
Showing
5 changed files
with
32 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "gitpod", | ||
"displayName": "Gitpod", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "The developer platform for on-demand cloud development environments. Create software faster and more securely.", | ||
"author": "Gitpod <[email protected]>", | ||
"homepage": "https://www.gitpod.io", | ||
|
@@ -27,6 +27,7 @@ | |
"webext-additional-permissions": "^2.4.0", | ||
"webext-content-scripts": "^2.5.5", | ||
"webext-detect-page": "^4.1.1", | ||
"webext-domain-permission-toggle": "^4.0.1", | ||
"webext-dynamic-content-scripts": "v9", | ||
"webext-patterns": "^1.3.0", | ||
"webext-polyfill-kinda": "^1.0.2", | ||
|
@@ -69,7 +70,7 @@ | |
], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "{24229a4f-eecc-47dc-abad-e47674ea8169}" | ||
"id": "{dbcc42f9-c979-4f53-8a95-a102fbff3bbe}" | ||
} | ||
} | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
jq '.manifest.optional_permissions = .manifest.optional_host_permissions | del(.manifest.optional_host_permissions)' package.json > temp.json && mv temp.json package.json # fix incompatibility with Firefox's MV3 implementation. See https://bugzilla.mozilla.org/show_bug.cgi?id=1766026 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters