Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: tests/expecteddata/manifest_gecko_devenv.json

Issue 29743581: Issue 6552 - Support arbitrary manifest values (Closed) Base URL: https://hg.adblockplus.org/buildtools/file/a3db4a1a49e8
Patch Set: Created April 19, 2018, 11:42 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/expecteddata/manifest_gecko_devenv.json
diff --git a/tests/expecteddata/manifest_gecko_devenv.json b/tests/expecteddata/manifest_gecko_devenv.json
index c59b259f9265a07314e437d25ad5ce70e83175f1..cacb7d97c0004d9ae006b51753b93c3fa79469d8 100644
--- a/tests/expecteddata/manifest_gecko_devenv.json
+++ b/tests/expecteddata/manifest_gecko_devenv.json
@@ -1,68 +1,79 @@
{
"applications": {
"gecko": {
- "id": "{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}",
+ "id": "{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}",
"strict_min_version": "50.0"
}
- },
- "author": "eyeo GmbH",
+ },
+ "author": "eyeo GmbH",
"background": {
- "persistent": true,
+ "persistent": true,
"scripts": [
- "ext/common.js",
- "ext/background.js",
+ "ext/common.js",
+ "ext/background.js",
"devenvPoller__.js"
]
- },
+ },
"browser_action": {
"default_icon": {
- "16": "icons/abp-16.png",
- "19": "icons/abp-19.png",
+ "16": "icons/abp-16.png",
+ "19": "icons/abp-19.png",
"53": "icons/abp-53.png"
- },
- "default_popup": "popup.html",
+ },
+ "default_popup": "popup.html",
"default_title": "__MSG_name__"
- },
+ },
"content_scripts": [
{
- "all_frames": true,
+ "all_frames": true,
"js": [
"content.js"
- ],
- "match_about_blank": true,
+ ],
+ "match_about_blank": true,
"matches": [
- "http://*/*",
+ "http://*/*",
"https://*/*"
- ],
+ ],
"run_at": "planets"
}
- ],
- "default_locale": "en_US",
- "description": "__MSG_description__",
- "devtools_page": "devtools.html",
+ ],
+ "default_locale": "en_US",
+ "description": "__MSG_description__",
+ "devtools_page": "devtools.html",
+ "externally_connectable": {
+ "accepts_tls_channel_id": true,
+ "ids": [
+ "foo",
+ "bar"
+ ],
+ "matches": [
+ "https://*.google.com/*",
+ "*://*.chromium.org/*"
+ ]
+ },
"icons": {
"16": "icons/abp-16.png"
- },
- "manifest_version": 2,
- "minimum_chrome_version": "49.0",
- "minimum_opera_version": "36.0",
- "name": "__MSG_name__",
+ },
+ "manifest_version": 2,
+ "minimum_chrome_version": "49.0",
+ "minimum_opera_version": "36.0",
+ "name": "__MSG_name__",
"optional_permissions": [
"webRequest"
- ],
+ ],
"options_ui": {
- "open_in_tab": true,
+ "open_in_tab": true,
"page": "options.html"
- },
+ },
"permissions": [
- "tabs",
+ "tabs",
"<all_urls>"
- ],
- "short_name": "__MSG_name__",
+ ],
+ "short_name": "__MSG_name__",
"storage": {
"managed_schema": "storage.json"
- },
- "version": "1.2.3",
+ },
+ "version": "1.2.3",
"web_accessible_resources": [
"images/*.png"
]

Powered by Google App Engine
This is Rietveld