| OLD | NEW | 
| (Empty) |  | 
 |   1 { | 
 |   2   "test1": { | 
 |   3     "contexts": ["content_script", "blessed_extension", "unblessed_extension"] | 
 |   4   }, | 
 |   5   "test2": { | 
 |   6     "contexts": ["web_page"], | 
 |   7     "matches": ["<all_urls>"] | 
 |   8   }, | 
 |   9   "test2.foo": { | 
 |  10     "contexts": ["content_script"] | 
 |  11   }, | 
 |  12   "test3": { | 
 |  13     "contexts": ["content_script"] | 
 |  14   }, | 
 |  15   "test3.foo": { | 
 |  16     "contexts": ["web_page", "blessed_extension"], | 
 |  17     "matches": ["<all_urls>"] | 
 |  18   }, | 
 |  19   "test4": { | 
 |  20     "contexts": ["blessed_extension"], | 
 |  21     "dependencies": ["api:test3.foo"] | 
 |  22   }, | 
 |  23   "test4.foo": { | 
 |  24     "contexts": ["unblessed_extension"], | 
 |  25     "dependencies": ["api:test4"] | 
 |  26   }, | 
 |  27   "test4.foo.foo": { | 
 |  28     "contexts": ["content_script"] | 
 |  29   }, | 
 |  30   "test5": { | 
 |  31     "contexts": ["web_page"], | 
 |  32     "matches": ["http://foo.com/*"] | 
 |  33   }, | 
 |  34   "test6": { | 
 |  35     "contexts": ["content_script"] | 
 |  36   }, | 
 |  37   "test6.foo": { | 
 |  38     "contexts": ["blessed_extension"] | 
 |  39   }, | 
 |  40   "test7": { | 
 |  41     "contexts": ["web_page"], | 
 |  42     "matches": ["http://foo.com/*"] | 
 |  43   }, | 
 |  44   "test7.foo": { | 
 |  45     "contexts": ["web_page"], | 
 |  46     "matches": ["<all_urls>"], | 
 |  47     "dependencies": ["test7"] | 
 |  48   }, | 
 |  49   "test7.bar": { | 
 |  50     "contexts": ["web_page"], | 
 |  51     "matches": ["http://bar.com/*"], | 
 |  52     "dependencies": ["test7.foo"] | 
 |  53   } | 
 |  54 } | 
| OLD | NEW |