1
0
mirror of https://github.com/XFox111/PasswordGeneratorExtension.git synced 2026-04-22 08:08:01 +03:00
Files
PasswordGeneratorExtension/public/manifest.json
T
Eugene Fox 03d74f93d6 Major 2.0 (#8)
* Migrated to React 18 and FluentUI 9

* Added Ukranian translation

* Updated GitHub templates

* Updated CI/CD
- Added CodeQL and Dependabot pipelines
- Removed Whitesource Bolt integration
- Added PR pipeline
- Update release pipeline to meet ReactJS
- Added Edge publish to pipeline
- Updated PR checklist

* Updated repo docs

* Moved dependabot yml to the right place

* Update README.md

* Added path filters to pipelines
2022-09-06 19:12:02 +03:00

57 lines
914 B
JSON

{
"$schema": "https://json.schemastore.org/chrome-manifest.json",
"manifest_version": 3,
"name": "__MSG_name__",
"description": "__MSG_description__",
"author": "__MSG_author__",
"version": "2.0.0",
"default_locale": "en",
"permissions":
[
"storage",
"contextMenus",
"clipboardWrite"
],
"background":
{
"service_worker": "./static/js/background.js",
"type": "module"
},
"content_scripts":
[
{
"matches": [ "<all_urls>" ],
"js": [ "./static/js/contentScript.js" ],
"run_at": "document_idle",
"all_frames": true
}
],
"action":
{
"default_popup": "index.html",
"default_title": "__MSG_name__"
},
"icons":
{
"128": "icons/icon-128.png",
"48": "icons/icon-48.png",
"32": "icons/icon-32.png",
"16": "icons/icon-16.png"
},
"browser_specific_settings":
{
"gecko":
{
"id": "passwordgenerator@xfox111.net",
"strict_min_version": "58.0"
}
}
}