| OLD | NEW |
| 1 <h1>Manifest Version</h1> | 1 <h1>Manifest Version</h1> |
| 2 | 2 |
| 3 <style type="text/css"> | 3 <style type="text/css"> |
| 4 #schedule h3 { | 4 #schedule h3 { |
| 5 margin-bottom:0; | 5 margin-bottom:0; |
| 6 } | 6 } |
| 7 | 7 |
| 8 #schedule p { | 8 #schedule p { |
| 9 margin-top:0; | 9 margin-top:0; |
| 10 margin-bottom:1em; | 10 margin-bottom:1em; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 <a href="../extensions/contentSecurityPolicy.html"> | 96 <a href="../extensions/contentSecurityPolicy.html"> |
| 97 <code>content_security_policy</code></a> documentation. | 97 <code>content_security_policy</code></a> documentation. |
| 98 </p> | 98 </p> |
| 99 </li> | 99 </li> |
| 100 <li> | 100 <li> |
| 101 <p> | 101 <p> |
| 102 A package's resources are no longer available by default to external | 102 A package's resources are no longer available by default to external |
| 103 websites (as the <code>src</code> of an image, or a <code>script</code> | 103 websites (as the <code>src</code> of an image, or a <code>script</code> |
| 104 tag). If you want a website to be able to load a resource contained in | 104 tag). If you want a website to be able to load a resource contained in |
| 105 your package, you'll need to explicitly whitelist it via the | 105 your package, you'll need to explicitly whitelist it via the |
| 106 <a href="manifest.html#web_accessible_resources"> | 106 <a href="manifest/web_accessible_resources.html"> |
| 107 <code>web_accessible_resources</code> | 107 <code>web_accessible_resources</code> |
| 108 </a> manifest attribute. This is particularly relevant for extensions that | 108 </a> manifest attribute. This is particularly relevant for extensions that |
| 109 build up an interface on a website via injected content scripts. | 109 build up an interface on a website via injected content scripts. |
| 110 </p> | 110 </p> |
| 111 </li> | 111 </li> |
| 112 <li> | 112 <li> |
| 113 <p> | 113 <p> |
| 114 The <code>background_page</code> property has been replaced with a | 114 The <code>background_page</code> property has been replaced with a |
| 115 <code>background</code> property that contains <em>either</em> a | 115 <code>background</code> property that contains <em>either</em> a |
| 116 <code>scripts</code> or <code>page</code> property. Details are available | 116 <code>scripts</code> or <code>page</code> property. Details are available |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 </p> | 219 </p> |
| 220 </li> | 220 </li> |
| 221 <li> | 221 <li> |
| 222 <p> | 222 <p> |
| 223 <code>Port.tab</code> is gone. Use | 223 <code>Port.tab</code> is gone. Use |
| 224 $ref:runtime.Port | 224 $ref:runtime.Port |
| 225 instead. | 225 instead. |
| 226 </p> | 226 </p> |
| 227 </li> | 227 </li> |
| 228 </ul> | 228 </ul> |
| OLD | NEW |