| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 [default] | 
|  | 2 # Base metadata file whose sections and keys we inherit but can override. | 
|  | 3 inherit = metadata.common | 
|  | 4 | 
|  | 5 # Icons to be placed into /Assets and referenced in AppxManifest.xml. | 
|  | 6 [appx_assets] | 
|  | 7 # 50x50 logo for the store. | 
|  | 8 logo_50.png = path/to/logo_50.png | 
|  | 9 | 
|  | 10 # 44x44 and 150x150 logos for Windows UI. | 
|  | 11 logo_44.png = path/to/logo_44.png | 
|  | 12 logo_150.png = path/to/big_logo.png | 
|  | 13 | 
|  | 14 [compat] | 
|  | 15 # Target Edge version (for manifest.json) | 
|  | 16 edge = 37.14332.1000.0 | 
|  | 17 # Min/max windows version (for AppxManifest.xml) | 
|  | 18 windows = 10.0.14332.0/12.0.0.0 | 
|  | 19 | 
|  | 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 | 
|  | 25 # Base name of the plugin file (version and extension will be added to this). | 
|  | 26 basename = myext-edge | 
|  | 27 | 
|  | 28 # Background color for the Appx manifest. | 
|  | 29 background_color = pink | 
|  | 30 | 
|  | 31 # Permissions of the extension to place into manifest.json | 
|  | 32 # (see https://developer.chrome.com/extensions/declare_permissions). | 
|  | 33 permissions = | 
|  | 34   tabs | 
|  | 35   bookmarks | 
|  | 36   http://*/* | 
|  | 37   https://*/* | 
|  | 38 | 
|  | 39 # UI definitions. | 
|  | 40 options = options.html | 
|  | 41 | 
|  | 42 # Icon for the browser toolbar. Used to produce browser_action key in | 
|  | 43 # manifest.json (see https://developer.chrome.com/extensions/browserAction). | 
|  | 44 browserAction = icons/icon-19.png icons/icon-38.png popup.html | 
|  | 45 | 
|  | 46 # Icons for manifest.json. | 
|  | 47 icons = icon-16.png icon-32.png icon-48.png icon-64.png icon-128.png | 
|  | 48 | 
|  | 49 # Files that are renamed/moved when placed into the package. | 
|  | 50 [mapping] | 
|  | 51 target/path/file.png = source/path/icon.png | 
|  | 52 | 
|  | 53 # Javascript source files to be compiled/bundled by JSHydra. | 
|  | 54 [convert_js] | 
|  | 55 # Two files bundled into one. | 
|  | 56 path/bundle.js = source/path/src1.js src2.js | 
|  | 57 | 
|  | 58 # Remove a file from a bundle defined in common.metadata. | 
|  | 59 path/common-bundle.js -= removed/src.js | 
| OLD | NEW | 
|---|