| LEFT | RIGHT |
| 1 [default] | 1 [default] |
| 2 # Base metadata file whose sections and keys we inherit but can override. | 2 # Base metadata file whose sections and keys we inherit but can override. |
| 3 inherit = metadata.common | 3 inherit = metadata.common |
| 4 | |
| 5 # App identity assigned by the Windows Dev Center. | |
| 6 [package_identity] | |
| 7 name = ACME.MyExt | |
| 8 publisher = CN=4F066043-8AFE-41C9-B762-6C15E77E3F88 | |
| 9 | 4 |
| 10 # Icons to be placed into /Assets and referenced in AppxManifest.xml. | 5 # Icons to be placed into /Assets and referenced in AppxManifest.xml. |
| 11 [appx_assets] | 6 [appx_assets] |
| 12 # 50x50 logo for the store. | 7 # 50x50 logo for the store. |
| 13 logo_50.png = path/to/logo_50.png | 8 logo_50.png = path/to/logo_50.png |
| 14 | 9 |
| 15 # 44x44 and 150x150 logos for Windows UI. | 10 # 44x44 and 150x150 logos for Windows UI. |
| 16 logo_44.png = path/to/logo_44.png | 11 logo_44.png = path/to/logo_44.png |
| 17 logo_150.png = path/to/big_logo.png | 12 logo_150.png = path/to/big_logo.png |
| 18 | 13 |
| 19 [compat] | 14 [compat] |
| 20 # Target Edge version. | 15 # Target Edge version (for manifest.json) |
| 21 edge = 37.14332.1000.0 | 16 edge = 37.14332.1000.0 |
| 17 # Min/max windows version (for AppxManifest.xml) |
| 18 windows = 10.0.14332.0/12.0.0.0 |
| 22 | 19 |
| 23 [general] | 20 [general] |
| 21 # App identity and publisher ID assigned by the Windows Dev Center. |
| 22 app_id = ACME.MyExt |
| 23 publisher_id = CN=4F066043-8AFE-41C9-B762-6C15E77E3F88 |
| 24 |
| 24 # Base name of the plugin file (version and extension will be added to this). | 25 # Base name of the plugin file (version and extension will be added to this). |
| 25 basename = myext-edge | 26 basename = myext-edge |
| 26 | 27 |
| 27 # Display name and description for the manifest files. | |
| 28 display_name = MyExt | |
| 29 description = MyExt is the greatest extension | |
| 30 | |
| 31 # Background color for the Appx manifest. | 28 # Background color for the Appx manifest. |
| 32 background_color = pink | 29 background_color = pink |
| 33 | |
| 34 # Extension ID for Appx manifest. | |
| 35 extension_id = 1.0 | |
| 36 | 30 |
| 37 # Permissions of the extension to place into manifest.json | 31 # Permissions of the extension to place into manifest.json |
| 38 # (see https://developer.chrome.com/extensions/declare_permissions). | 32 # (see https://developer.chrome.com/extensions/declare_permissions). |
| 39 permissions = | 33 permissions = |
| 40 tabs | 34 tabs |
| 41 bookmarks | 35 bookmarks |
| 42 http://*/* | 36 http://*/* |
| 43 https://*/* | 37 https://*/* |
| 44 | 38 |
| 45 # UI definitions. | 39 # UI definitions. |
| 46 options = options.html | 40 options = options.html |
| 47 devtools = devtools.html | |
| 48 | 41 |
| 49 # Icon for the browser toolbar. Used to produce browser_action key in | 42 # Icon for the browser toolbar. Used to produce browser_action key in |
| 50 # manifest.json (see https://developer.chrome.com/extensions/browserAction). | 43 # manifest.json (see https://developer.chrome.com/extensions/browserAction). |
| 51 browserAction = icons/icon-19.png icons/icon-38.png popup.html | 44 browserAction = icons/icon-19.png icons/icon-38.png popup.html |
| 52 | 45 |
| 53 # Icons for manifest.json. | 46 # Icons for manifest.json. |
| 54 icons = icon-16.png icon-32.png icon-48.png icon-64.png icon-128.png | 47 icons = icon-16.png icon-32.png icon-48.png icon-64.png icon-128.png |
| 55 | 48 |
| 56 # Schema for managed storage (storage.managed_schema in manifest.json). | 49 # Files that are renamed/moved when placed into the package. |
| 57 managedStorageSchema = schema.json | |
| 58 | |
| 59 # Files that are renamed/moved when placed into the package. | |
| 60 [mapping] | 50 [mapping] |
| 61 target/path/file.png = source/path/icon.png | 51 target/path/file.png = source/path/icon.png |
| 62 | 52 |
| 63 # Javascript source files to be compiled/bundled by JSHydra. | 53 # Javascript source files to be compiled/bundled by JSHydra. |
| 64 [convert_js] | 54 [convert_js] |
| 65 # Two files bundled into one. | 55 # Two files bundled into one. |
| 66 path/bundle.js = source/path/src1.js src2.js | 56 path/bundle.js = source/path/src1.js src2.js |
| 67 | 57 |
| 68 # Remove a file from a bundle defined in common.metadata. | 58 # Remove a file from a bundle defined in common.metadata. |
| 69 path/common-bundle.js -= removed/src.js | 59 path/common-bundle.js -= removed/src.js |
| LEFT | RIGHT |