├── .gitignore ├── LICENSE ├── README.md ├── create-xdc.sh ├── icon.png ├── index.html ├── manifest.toml └── webxdc.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.xdc 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webxdc/hello/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webxdc/hello/HEAD/README.md -------------------------------------------------------------------------------- /create-xdc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webxdc/hello/HEAD/create-xdc.sh -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webxdc/hello/HEAD/icon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webxdc/hello/HEAD/index.html -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webxdc/hello/HEAD/manifest.toml -------------------------------------------------------------------------------- /webxdc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webxdc/hello/HEAD/webxdc.js --------------------------------------------------------------------------------