| 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 }, |
| 11 "test3": { |
| 12 "contexts": ["content_script", "blessed_extension"] |
| 13 }, |
| 14 "test4": { |
| 15 "contexts": ["blessed_extension"] |
| 16 }, |
| 17 "test4.foo": { |
| 18 "contexts": ["content_script", "blessed_extension"] |
| 19 }, |
| 20 "test4.bar": { |
| 21 "dependencies": ["api:test4.foo"] |
| 22 }, |
| 23 "test4.baz": { |
| 24 "contexts": ["content_script"] |
| 25 }, |
| 26 "test5": { |
| 27 "contexts": ["blessed_extension"] |
| 28 }, |
| 29 "test5.foo": { |
| 30 "dependencies": ["test2:monkey"] |
| 31 }, |
| 32 "test5.bar": { |
| 33 "dependencies": ["api:test5.foo"] |
| 34 }, |
| 35 "test5.bar.foo": { |
| 36 "dependencies": ["api:test5.bar"] |
| 37 } |
| 38 } |
| OLD | NEW |