Skip to content

Commit

Permalink
add add-on ID for Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
kas-elvirov committed Jan 3, 2025
1 parent eb83f98 commit 68a98f3
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_APP_VERSION=10.0.7
VITE_APP_APP_VERSION=10.0.8
VITE_APP_TOKEN_CREATION_LINK=https://github.com/settings/tokens/new?scopes=repo&description=Github%20GLOC
VITE_APP_APPLICATION_REPO=https://github.com/kas-elvirov/gloc
VITE_APP_DEVELOPER_WEBSITE=https://kas-elvirov.com
Expand Down
2 changes: 1 addition & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_APP_VERSION=10.0.7
VITE_APP_APP_VERSION=10.0.8
VITE_APP_TOKEN_CREATION_LINK=https://github.com/settings/tokens/new?scopes=repo&description=Github%20GLOC
VITE_APP_APPLICATION_REPO=https://github.com/kas-elvirov/gloc
VITE_APP_DEVELOPER_WEBSITE=https://kas-elvirov.com
Expand Down
2 changes: 1 addition & 1 deletion .env.production
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_APP_VERSION=10.0.7
VITE_APP_APP_VERSION=10.0.8
VITE_APP_TOKEN_CREATION_LINK=https://github.com/settings/tokens/new?scopes=repo&description=Github%20GLOC
VITE_APP_APPLICATION_REPO=https://github.com/kas-elvirov/gloc
VITE_APP_DEVELOPER_WEBSITE=https://kas-elvirov.com
Expand Down
12 changes: 11 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"short_name": "Gloc",
"author": "Kas Elvirov",
"description": "Github Gloc - counts locs on GitHub pages",
"version": "10.0.7",
"version": "10.0.8",
"action": {
"default_icon": {
"16": "img/icon16.png",
Expand Down Expand Up @@ -41,5 +41,15 @@
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"applications": {
"gecko": {
"id": "{bc2166c4-e7a2-46d5-ad9e-342cef57f1f7}"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gloc",
"version": "10.0.7",
"version": "10.0.8",
"engines": {
"node": "16.19.0",
"npm": "0.39.3"
Expand Down
62 changes: 40 additions & 22 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,52 @@
"short_name": "Gloc",
"author": "Kas Elvirov",
"description": "Github Gloc - counts locs on GitHub pages",
"version": "9.0.12",
"version": "10.0.7",
"action": {
"default_icon": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"default_title": "Github Gloc - counts locs on GitHub pages",
"default_popup": "popup.html"
"default_icon": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"default_title": "Github Gloc - counts locs on GitHub pages",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html"
"page": "options.html"
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["*://github.com/*"],
"js": ["src/content.tsx"],
"run_at": "document_idle"
}
{
"matches": [
"*://github.com/*"
],
"js": [
"src/content.tsx"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"*://*.github.com/*"
],
"permissions": ["storage"],
"host_permissions": ["*://*.github.com/*"],
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
"16": "img/icon16.png",
"32": "img/icon32.png",
"64": "img/icon64.png",
"128": "img/icon128.png"
},
"applications": {
"gecko": {
"id": "{bc2166c4-e7a2-46d5-ad9e-342cef57f1f7}"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}
}

0 comments on commit 68a98f3

Please sign in to comment.