| OLD | NEW |
| (Empty) | |
| 1 { |
| 2 "test1": { |
| 3 "contexts": ["content_script"] |
| 4 }, |
| 5 "test1.foo": { |
| 6 "contexts": ["blessed_extension"] |
| 7 }, |
| 8 "test2": { |
| 9 "contexts": ["blessed_extension"], |
| 10 "dependencies": ["api:test1"] |
| 11 }, |
| 12 "test2.foo": { |
| 13 "contexts": ["content_script"] |
| 14 }, |
| 15 "test2.bar": { |
| 16 "contexts": ["content_script", "blessed_extension"] |
| 17 }, |
| 18 "test2.baz": { |
| 19 "contexts": ["blessed_extension"], |
| 20 "dependencies": ["api:test2.foo"] |
| 21 }, |
| 22 "test3": { |
| 23 "contexts": ["content_script", "blessed_extension"] |
| 24 }, |
| 25 "test3.foo": { |
| 26 "contexts": ["blessed_extension"] |
| 27 }, |
| 28 "test4": { |
| 29 "contexts": ["content_script"], |
| 30 "dependencies": ["api:test1.foo"] |
| 31 } |
| 32 } |
| OLD | NEW |