Compare commits

2 Commits

8 changed files with 19 additions and 20 deletions

View File

@@ -1,3 +1,3 @@
#!/usr/bin/env bash #!/usr/bin/env bash
web-ext build --source-dir=./src --artifacts-dir=./web-ext-artifacts web-ext build --source-dir=./src --artifacts-dir=./builds

View File

@@ -1,10 +1,11 @@
#!/usr/bin/env bash !/usr/bin/env bash
source .env source .env
cd src echo "Building/signing listed firefox extension"
mv manifest.json manifest_temp.json mv src/manifest.json src/manifest_temp.json
mv manifest_ff.json manifest.json mv src/manifest_ff.json src/manifest.json
web-ext sign --channel=listed --api-key=user:$API_KEY --api-secret=$API_SECRET echo "manifest_ff > manifest"
mv manifest.json manifest_ff.json web-ext sign --channel=unlisted --api-key=user:$API_KEY --api-secret=$API_SECRET --source-dir=./src --artifacts-dir=./builds
mv manifest_temp.json manifest.json mv src/manifest.json src/manifest_ff.json
mv src/manifest_temp.json src/manifest.json

View File

@@ -2,9 +2,9 @@
source .env source .env
cd src echo "Building/signing UNlisted firefox extension"
mv manifest.json manifest_temp.json mv src/manifest.json src/manifest_temp.json
mv manifest_ff.json manifest.json mv src/manifest_ff.json src/manifest.json
web-ext sign --channel=unlisted --api-key=user:$API_KEY --api-secret=$API_SECRET web-ext sign --channel=unlisted --api-key=user:$API_KEY --api-secret=$API_SECRET --source-dir=./src --artifacts-dir=./builds
mv manifest.json manifest_ff.json mv src/manifest.json src/manifest_ff.json
mv manifest_temp.json manifest.json mv src/manifest_temp.json src/manifest.json

BIN
builds/aula_fixer-1.4.1.xpi Normal file

Binary file not shown.

BIN
builds/aula_fixer-1.4.xpi Normal file

Binary file not shown.

View File

@@ -1,7 +1,7 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "Aula Fixer", "name": "Aula Fixer",
"version": "1.3", "version": "1.4",
"description": "Removes all notifications about rooms for rent etc. on Aula and changes styling so that less screen space is wasted.", "description": "Removes all notifications about rooms for rent etc. on Aula and changes styling so that less screen space is wasted.",
"background": { "background": {

View File

@@ -1,12 +1,11 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "Aula Fixer", "name": "Aula Fixer",
"version": "1.3", "version": "1.4",
"description": "Removes all notifications about rooms for rent etc. on Aula and changes styling so that less screen space is wasted.", "description": "Removes all notifications about rooms for rent etc. on Aula and changes styling so that less screen space is wasted.",
"background": { "background": {
"service_worker": "background.js", "service_worker": "background.js"
"scripts": ["background.js"]
}, },
"content_scripts": [ "content_scripts": [

View File

@@ -1,11 +1,10 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "Aula Fixer", "name": "Aula Fixer",
"version": "1.3", "version": "1.4.1",
"description": "Removes all notifications about rooms for rent etc. on Aula and changes styling so that less screen space is wasted.", "description": "Removes all notifications about rooms for rent etc. on Aula and changes styling so that less screen space is wasted.",
"background": { "background": {
"service_worker": "background.js",
"scripts": ["background.js"] "scripts": ["background.js"]
}, },