Skip to content

Commit

Permalink
Increment version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Aug 17, 2024
1 parent dc76855 commit 38d52a4
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
2 changes: 1 addition & 1 deletion chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"version": "0.4.0",
"version": "0.5.0",
"manifest_version": 3,
"minimum_chrome_version": "116",
"description": "__MSG_appDescription__",
Expand Down
27 changes: 21 additions & 6 deletions firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"version": "0.4.0",
"version": "0.5.0",
"manifest_version": 3,
"minimum_chrome_version": "116",
"description": "__MSG_appDescription__",
Expand All @@ -12,7 +12,9 @@
},
"default_locale": "en",
"background": {
"scripts": ["scripts/service-worker.js"]
"scripts": [
"scripts/service-worker.js"
]
},
"action": {
"default_icon": {
Expand All @@ -39,12 +41,25 @@
"description": "Select and edit element"
}
},
"permissions": ["activeTab", "scripting", "storage", "tabs"],
"host_permissions": ["http://*/*", "https://*/*"],
"permissions": [
"activeTab",
"scripting",
"storage",
"tabs"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": ["scripts/injected.js"],
"matches": ["http://*/*", "https://*/*"]
"resources": [
"scripts/injected.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
],
"options_ui": {
Expand Down

0 comments on commit 38d52a4

Please sign in to comment.