Compare commits

...

2 Commits
v1.3 ... master

Author SHA1 Message Date
Ceda EI 05d4d14c3c Add background to permissions array. 2020-09-22 09:25:00 +05:30
Ceda EI 6bcef99546 Update build.sh 2020-09-20 12:42:42 +05:30
2 changed files with 3 additions and 2 deletions

View File

@ -7,5 +7,5 @@ yarn build
cd ..
[[ -d web-ext-artifacts ]] || mkdir web-ext-artifacts
FILENAME="$(basename "$PWD")-$(jq -r .version manifest.json).zip"
zip -r "web-ext-artifacts/$FILENAME" LICENSE gmcr.js manifest.json popup/build/ icons/
zip -r "web-ext-artifacts/$FILENAME" LICENSE gmcr.js manifest.json background.js popup/build/ icons/
zip -r "web-ext-artifacts/source-$FILENAME" $(git ls-files)

View File

@ -1,12 +1,13 @@
{
"manifest_version": 2,
"name": "Google Meet Caption Regex",
"version": "1.3",
"version": "1.4",
"description": "Send a notification when a caption in Google Meet matches a certain regex.",
"homepage_url": "https://gitlab.com/ceda_ei/google-meet-captions-regex",
"permissions": [
"background",
"notifications",
"storage"
],