-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
manifest.json - removed applications field for Firefox
- Loading branch information
1 parent
68a98f3
commit 99d7301
Showing
7 changed files
with
56 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"short_name": "Gloc", | ||
"author": "Kas Elvirov", | ||
"description": "Github Gloc - counts locs on GitHub pages", | ||
"version": "10.0.8", | ||
"version": "10.0.9", | ||
"action": { | ||
"default_icon": { | ||
"16": "img/icon16.png", | ||
|
@@ -42,14 +42,9 @@ | |
"64": "img/icon64.png", | ||
"128": "img/icon128.png" | ||
}, | ||
"applications": { | ||
"gecko": { | ||
"id": "{bc2166c4-e7a2-46d5-ad9e-342cef57f1f7}" | ||
} | ||
}, | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
"id": "{bc2166c4-e7a2-46d5-ad9e-342cef57f1f7}" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "gloc", | ||
"version": "10.0.8", | ||
"version": "10.0.9", | ||
"engines": { | ||
"node": "16.19.0", | ||
"npm": "0.39.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,50 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Gloc", | ||
"short_name": "Gloc", | ||
"author": "Kas Elvirov", | ||
"description": "Github Gloc - counts locs on GitHub pages", | ||
"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" | ||
}, | ||
"options_ui": { | ||
"page": "options.html" | ||
}, | ||
"options_page": "options.html", | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"*://github.com/*" | ||
], | ||
"js": [ | ||
"src/content.tsx" | ||
], | ||
"run_at": "document_idle" | ||
} | ||
], | ||
"permissions": [ | ||
"storage" | ||
], | ||
"host_permissions": [ | ||
"*://*.github.com/*" | ||
], | ||
"icons": { | ||
"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]" | ||
} | ||
} | ||
"manifest_version": 3, | ||
"name": "Gloc", | ||
"short_name": "Gloc", | ||
"author": "Kas Elvirov", | ||
"description": "Github Gloc - counts locs on GitHub pages", | ||
"version": "10.0.8", | ||
"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" | ||
}, | ||
"options_ui": { | ||
"page": "options.html" | ||
}, | ||
"options_page": "options.html", | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"*://github.com/*" | ||
], | ||
"js": [ | ||
"src/content.tsx" | ||
], | ||
"run_at": "document_idle" | ||
} | ||
], | ||
"permissions": [ | ||
"storage" | ||
], | ||
"host_permissions": [ | ||
"*://*.github.com/*" | ||
], | ||
"icons": { | ||
"16": "img/icon16.png", | ||
"32": "img/icon32.png", | ||
"64": "img/icon64.png", | ||
"128": "img/icon128.png" | ||
}, | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "{bc2166c4-e7a2-46d5-ad9e-342cef57f1f7}" | ||
} | ||
} | ||
} |