Skip to content

Commit

Permalink
Merge pull request #23 from koloml/hotfix/firefox-missing-extension-id
Browse files Browse the repository at this point in the history
Fixed missing extension ID required for publishing to Firefox extensions store
  • Loading branch information
koloml authored Aug 8, 2024
2 parents 63e6ee3 + a93430f commit 16d1265
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"name": "Furbooru Tagging Assistant",
"description": "Experimental extension with a set of tools to make the tagging faster and easier. Made specifically for Furbooru.",
"version": "0.2.0",
"version": "0.2.0.1",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "furbooru-tagging-assistant",
"version": "0.2.0",
"version": "0.2.0.1",
"private": true,
"scripts": {
"build": "npm run build:popup && npm run build:extension",
Expand Down

0 comments on commit 16d1265

Please sign in to comment.