Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

For exemple , to use Kongregate with your export project :

Put this link into the Index.html after export;

<script src='https://cdn1.kongregate.com/javascripts/kongregate_api.js'></script>

And in Superpowers, you can directly use :

declare let window;

let kongregate = window.kongregateAPI.getAPI();
kongregate.services.connect();

or

declare let window;

let kongregate = window["kongregateAPI"]["getAPI"]();
kongregate["services"]["connect"]();

wow thank's for reply.. i will try first :)