|
1 |
| -# Add an App |
2 |
| - |
3 |
| -First, please make sure the site accepts IFrame. You can check this by inserting the sites URL into this: [IFrame checker](https://www.tinywebgallery.com/blog/advanced-iframe/free-iframe-checker) |
4 |
| - |
5 |
| -## Ways to add an app to the store |
6 |
| - |
7 |
| -### Using Github issues |
8 |
| - |
9 |
| -Create an [Issue](https://github.com/win11react/store/issues/new/choose) and follow the given steps. |
10 |
| - |
11 |
| -### Via Github Pull Request |
12 |
| - |
13 |
| -Make a pull request by editing the [store.json](https://github.com/win11react/store/blob/main/store/index.json) file |
14 |
| - |
15 |
| -Read the schema below, **BEFORE** adding any game/app element into the `store.json` file: |
16 |
| - |
17 |
| -```json |
18 | 1 | {
|
19 |
| - "name": "Minecraft", // unique name (check if it has been used already in the file) |
20 |
| - "icon": "https://example.com/minecraft.png", // logo image, preferrably 1:1 and less than 128px of width |
21 |
| - "type": "game", // game or app |
| 2 | + "name": "MSEDGE" |
| 3 | + "icon": "https://bing.com/" |
| 4 | + "type": "app" |
22 | 5 | "data": {
|
23 |
| - "type": "IFrame", // type currently supports IFrame only |
24 |
| - "url": "https://classic.minecraft.net", // url of the app and make sure they accept Iframe |
| 6 | + "type": "IFrame" |
| 7 | + "url": "https://bing.com/" |
25 | 8 | "gallery": [
|
26 |
| - // three or more images for gallery view in store app |
27 | 9 | "https://www.minecraft.net/content/dam/games/minecraft/key-art/CavesandCliffsPt1-dotNET-HomepagePromo-600x360.png",
|
28 | 10 | "https://variety.com/wp-content/uploads/2019/02/minecraft-best-year-yet.png?w=600",
|
29 | 11 | "https://www.minecraft.net/content/dam/games/minecraft/screenshots/RayTracing-MineCraft-PMP-Always-Something-New.jpg"
|
30 | 12 | ],
|
31 |
| - "desc": "Minecraft is a sandbox construction video game ...", // description for store app |
32 |
| - "feat": "1.1 Combat changes.\n1.2 Fletching table functionality.", // features for store app |
33 |
| - "invert": true // when true it forces dark theme for game/app window, default is false. |
| 13 | + "desc": "This is a web browser that doesen't require iframe" |
| 14 | + "feat": "1.1 Commit changes.\n1.2 Fletching table functionality." |
| 15 | + "invert": true |
34 | 16 | }
|
35 |
| -} |
36 |
| -``` |
37 |
| - |
38 |
| -:::caution |
39 |
| -### PLEASE REMOVE THE COMMENTS FROM YOUR JSON, BEFORE MAKING A PULL REQUEST |
40 |
| -**Comments look like this: `// example text`** |
41 |
| - |
42 |
| -::: |
43 |
| - |
44 |
| - |
45 |
| -Add your game/app in the file (don't beautify the code, just add your game/app element) and make a pull request to get it **potentially** accepted. |
| 17 | + } |
0 commit comments