Initial commit

This commit is contained in:
Corentin 2022-11-15 12:52:21 +09:00
commit 02c43827d5
16 changed files with 1473 additions and 0 deletions

24
manifest.json Normal file
View file

@ -0,0 +1,24 @@
{
"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",
"permissions": [
"storage",
"clipboardWrite"
],
"version": "1.0"
}