Index: manifest.json.tmpl |
diff --git a/manifest.json.tmpl b/manifest.json.tmpl |
index 4c8c7e08ebda9203349becc0fa4c81646201dcab..4168f16bfb7b5130e0295f0a64089d7df20538de 100644 |
--- a/manifest.json.tmpl |
+++ b/manifest.json.tmpl |
@@ -14,6 +14,7 @@ |
"description": "__MSG_description__", |
"default_locale": "en_US", |
"version": {{version|json}}, |
+ "author": "__MSG_author__", |
Sebastian Noack
2016/05/23 10:58:11
This string should come from the metadata rather t
|
{%- if metadata.has_section('compat') and metadata.has_option('compat', 'chrome') %} |
"minimum_chrome_version": {{metadata.get('compat', 'chrome')|json}}, |
@@ -53,7 +54,8 @@ |
{%- if backgroundScripts %} |
"background": { |
- "scripts": {{backgroundScripts|json}} |
+ "scripts": {{backgroundScripts|json}}, |
+ "persistent": true |
}, |
{%- endif %} |