uotp/manifest.json
Corentin b9d8c89120 Fix import
* Add options page to import/export (export also possible from popup)
* Change popup import to open options
* Add separate store.js file for common code between popup and options
* Bump version to 1.5.0
2024-05-07 10:04:48 +09:00

28 lines
No EOL
613 B
JSON

{
"author": "Corentin Risselin",
"browser_action": {
"default_icon": "icons/uotp.svg",
"default_title": "uOTP",
"default_popup": "/popup.html"
},
"background": {
"scripts": ["background.js"]
},
"content_security_policy": "default-src 'self'",
"description": "A simple OTP manager that doesn't require your data.",
"homepage_url": "https://gitlab.com/corentin-pro/uotp",
"icons": {
"96": "icons/uotp.svg"
},
"manifest_version": 2,
"name": "uOTP",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"clipboardWrite"
],
"version": "1.5.0"
}