1
0
mirror of https://github.com/S2-/pwgen.git synced 2025-08-03 09:10:04 +02:00

move everything to src

This commit is contained in:
s2
2017-11-16 09:24:32 +01:00
parent c784e80ece
commit 710fb753b7
9 changed files with 1 additions and 0 deletions

24
src/manifest.json Normal file
View File

@@ -0,0 +1,24 @@
{
"description": "Just a toolbar button that generates a password and copies it to your clipboard.",
"manifest_version": 2,
"name": "pwgen reloaded",
"version": "1.1.2",
"homepage_url": "https://github.com/S2-/pwgen",
"icons": {
"48": "icons/lock-48.png"
},
"browser_action": {
"default_icon": "icons/lock-32.png",
"theme_icons": [{
"light": "icons/lock-32-light.png",
"dark": "icons/lock-32.png",
"size": 32
}],
"default_title": "pwgen",
"default_popup": "popup/pwgen.html"
},
"permissions": [
"clipboardWrite",
"storage"
]
}