| OLD | NEW |
| 1 /* | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 * This file is part of the Adblock Plus build tools, | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 * | |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | |
| 6 * it under the terms of the GNU General Public License version 3 as | |
| 7 * published by the Free Software Foundation. | |
| 8 * | |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 * GNU General Public License for more details. | |
| 13 * | |
| 14 * You should have received a copy of the GNU General Public License | |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
| 16 */ | |
| 17 | 4 |
| 18 { | 5 { |
| 19 "manifest_version": 2, | 6 "manifest_version": 2, |
| 20 {%- if releaseBuild %} | 7 {%- if releaseBuild %} |
| 21 "name": "__MSG_name__", | 8 "name": "__MSG_name__", |
| 22 {%- else %} | 9 {%- else %} |
| 23 "name": "__MSG_name_devbuild__", | 10 "name": "__MSG_name_devbuild__", |
| 24 {%- endif %} | 11 {%- endif %} |
| 25 | 12 |
| 26 "description": "__MSG_description_{{ type }}__", | 13 "description": "__MSG_description_{{ type }}__", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 {%- if contentScripts %} | 70 {%- if contentScripts %} |
| 84 "content_scripts": {{contentScripts|json}}, | 71 "content_scripts": {{contentScripts|json}}, |
| 85 {%- endif %} | 72 {%- endif %} |
| 86 | 73 |
| 87 {%- if webAccessible %} | 74 {%- if webAccessible %} |
| 88 "web_accessible_resources": {{webAccessible|json}}, | 75 "web_accessible_resources": {{webAccessible|json}}, |
| 89 {%- endif %} | 76 {%- endif %} |
| 90 | 77 |
| 91 "_dummy": false | 78 "_dummy": false |
| 92 } | 79 } |
| OLD | NEW |