manifest: author, icons, stable name

This commit is contained in:
tg(x) 2016-10-21 21:28:18 +02:00
parent ef15d70138
commit fd30795847
2 changed files with 14 additions and 4 deletions

View File

@ -236,7 +236,7 @@ gulp.task("compile-prod", ["clean"], function () {
gulp.task("manifest-stable", ["clean"], function () { gulp.task("manifest-stable", ["clean"], function () {
return gulp.src("manifest.json") return gulp.src("manifest.json")
.pipe(jsonTransform((data) => { .pipe(jsonTransform((data) => {
data.name = "GNU Taler Wallet (stable)"; data.name = "GNU Taler Wallet";
return data; return data;
}, 2)) }, 2))
.pipe(gulp.dest("build/ext/")); .pipe(gulp.dest("build/ext/"));

View File

@ -1,7 +1,9 @@
{ {
"description": "Privacy preserving and transparent payments",
"manifest_version": 2, "manifest_version": 2,
"name": "GNU Taler Wallet (git)", "name": "GNU Taler Wallet (git)",
"description": "Privacy preserving and transparent payments",
"author": "GNU Taler Developers",
"version": "0.6.22", "version": "0.6.22",
"version_name": "0.1.2", "version_name": "0.1.2",
@ -15,6 +17,11 @@
} }
}, },
"icons": {
"32": "img/icon.png",
"128": "img/logo.png"
},
"permissions": [ "permissions": [
"storage", "storage",
"tabs", "tabs",
@ -25,7 +32,9 @@
], ],
"browser_action": { "browser_action": {
"default_icon": "img/icon.png", "default_icon": {
"32": "img/icon.png"
},
"default_title": "Taler", "default_title": "Taler",
"default_popup": "popup/popup.html" "default_popup": "popup/popup.html"
}, },
@ -48,6 +57,7 @@
], ],
"background": { "background": {
"page": "background/background.html" "page": "background/background.html",
"persistent": true
} }
} }