| OLD | NEW |
| 1 { | 1 { |
| 2 "test1": { | 2 "test1": { |
| 3 "channel": "stable", | 3 "channel": "stable", |
| 4 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | 4 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
| 5 "extension_types": ["extension"] | 5 "extension_types": ["extension"] |
| 6 }, | 6 }, |
| 7 "test2": { | 7 "test2": { |
| 8 "channel": "stable", | 8 "channel": "stable", |
| 9 "contexts": ["web_page"], | 9 "contexts": ["web_page"], |
| 10 "matches": ["<all_urls>"] | 10 "matches": ["<all_urls>"] |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 }, | 99 }, |
| 100 "non_kiosk": { | 100 "non_kiosk": { |
| 101 "channel": "stable", | 101 "channel": "stable", |
| 102 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | 102 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
| 103 "session_types": ["regular"] | 103 "session_types": ["regular"] |
| 104 }, | 104 }, |
| 105 "multiple_session_types": { | 105 "multiple_session_types": { |
| 106 "channel": "stable", | 106 "channel": "stable", |
| 107 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | 107 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
| 108 "session_types": ["kiosk", "regular"] | 108 "session_types": ["kiosk", "regular"] |
| 109 }, |
| 110 "alias_api": { |
| 111 "channel": "stable", |
| 112 "source": "alias_api_source", |
| 113 "contexts": ["content_script", "blessed_extension", "unblessed_extension"] |
| 114 }, |
| 115 "alias_api.foo": { |
| 116 "channel": "dev", |
| 117 "contexts": ["blessed_extension"] |
| 118 }, |
| 119 "alias_api_source": { |
| 120 "channel": "dev", |
| 121 "alias": "alias_api", |
| 122 "contexts": ["blessed_extension"] |
| 109 } | 123 } |
| 110 } | 124 } |
| OLD | NEW |