We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 985a825 commit 6c76814Copy full SHA for 6c76814
.gitignore
@@ -0,0 +1,5 @@
1
+.idea
2
+.vscode
3
+web-ext-artifacts/
4
+*.zip
5
+.env
manifest.json
@@ -29,5 +29,11 @@
29
"contextMenus",
30
"activeTab",
31
"webNavigation"
32
- ]
+ ],
33
+ "browser_specific_settings": {
34
+ "gecko": {
35
+ "id": "[email protected]",
36
+ "strict_min_version": "101.0"
37
+ }
38
39
}
package.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+if [ ! -f .env ]; then
+ echo put WEB_EXT_API_KEY= and WEB_EXT_API_SECRET= in .env
+ exit 1
6
+fi
7
8
+# shellcheck source=.env
9
+source .env
10
11
+set -e
12
13
+web-ext lint --output json --pretty >web-ext-artifacts/lint.json
14
+web-ext build --overwrite-dest
15
+web-ext sign --no-input
0 commit comments