Skip to content

Commit

Permalink
bump web extension to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
capaj committed Mar 14, 2024
1 parent 98ed4ef commit f4123aa
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
name: runs typescript and tests
name: runs typescript, tests, and deploys
services:
postgres:
image: postgres:latest
Expand Down
30 changes: 23 additions & 7 deletions web-extension/dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Authier",
"version": "1.1.0",
"version": "1.1.1",
"description": "Authier web Extension for all our supported browsers",
"action": {
"default_icon": {
Expand All @@ -16,22 +16,38 @@
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": ["js/browser-polyfill.js", "js/contentScript.js"]
"js": [
"js/browser-polyfill.js",
"js/contentScript.js"
]
}
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"host_permissions": ["<all_urls>"],
"permissions": ["activeTab", "storage", "tabs", "clipboardRead"],
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"storage",
"tabs",
"clipboardRead"
],
"web_accessible_resources": [
{
"resources": ["*.png"],
"matches": ["<all_urls>"]
"resources": [
"*.png"
],
"matches": [
"<all_urls>"
]
}
]
}
2 changes: 1 addition & 1 deletion web-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "authier-web-extension",
"displayName": "Authier",
"version": "1.1.0",
"version": "1.1.1",
"description": "Authier web Extension for all our supported browsers",
"license": "AGPL-3.0-or-later",
"webExt": {
Expand Down

0 comments on commit f4123aa

Please sign in to comment.