Add an App
First, please make sure the site accepts IFrame. You can check this by inserting the sites URL into this: IFrame checker
Ways to add an app to the store
Using Github issues
Create an Issue and follow the given steps.
Via Github Pull Request
Make a pull request by editing the store.json file
Read the schema below, BEFORE adding any game/app element into the store.json
file:
{
"name": "bloxd.io", // unique name (check if it has been used already in the file)
"icon": "https://www3.minijuegosgratis.com/v3/games/thumbnails/240164_1.jpg", // logo image, preferrably 1:1 and less than 128px of width
"type": "game", // game or app
"data": {
"type": "IFrame", // type currently supports IFrame only
"url": "https://bloxd.io", // url of the app and make sure they accept Iframe
"gallery": [
// three or more images for gallery view in store app
"https://bloxdcdn.bloxdhop.io/textures/games/classic_survival/gamemode_selector.jpg",
"https://bloxdcdn.bloxdhop.io/textures/games/worlds/gamemode_selector.jpg",
"https://bloxdcdn.bloxdhop.io/textures/games/doodle/gamemode_selector.jpg"
],
"desc": "bloxd.io is a web minecraft clone for all devises ...", // 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.
}
}
caution
PLEASE REMOVE THE COMMENTS FROM YOUR JSON, BEFORE MAKING A PULL REQUEST
Comments look like this: // example text
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.