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