Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Microsoft Edge #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions docs/Store/add-app.md → docs/Store/Edge
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,19 @@ Read the schema below, **BEFORE** adding any game/app element into the `store.js

```json
{
"name": "Minecraft", // unique name (check if it has been used already in the file)
"icon": "https://example.com/minecraft.png", // logo image, preferrably 1:1 and less than 128px of width
"type": "game", // game or app
"name": "Microsoft Edge"
"icon": "https://example.com/minecraft.png"
"type": "game"
"data": {
"type": "IFrame", // type currently supports IFrame only
"url": "https://classic.minecraft.net", // url of the app and make sure they accept Iframe
"gallery": [
// three or more images for gallery view in store app
"type": "IFrame"
"url": "https://www.bing.com"
"gallery": "https://www.bing.com"
"https://www.minecraft.net/content/dam/games/minecraft/key-art/CavesandCliffsPt1-dotNET-HomepagePromo-600x360.png",
"https://variety.com/wp-content/uploads/2019/02/minecraft-best-year-yet.png?w=600",
"https://www.minecraft.net/content/dam/games/minecraft/screenshots/RayTracing-MineCraft-PMP-Always-Something-New.jpg"
],
"desc": "Minecraft is a sandbox construction video game ...", // description for store app
"feat": "1.1 Combat changes.\n1.2 Fletching table functionality.", // features for store app
"invert": true // when true it forces dark theme for game/app window, default is false.
"desc": "Edge is a Windows web browser ..."
"feat": "1.1 Combat changes.\n1.2 Fletching table functionality."
"invert": true
}
}
```
Expand Down
Loading