Initial Home page

R. Aidan Campbell
2017-02-24 11:40:07 -07:00
commit 4c0ebae49c

17
Home.md Normal file

@@ -0,0 +1,17 @@
# Welcome to the moonlight-chrome wiki!
Only Chrome-specific information is here. For general Moonlight information, see the [Moonlight Wiki](https://github.com/moonlight-stream/moonlight-docs/wiki)
---
## Reading the Chrome App Logs
To enable debugging of packed apps (like the release .crx for Moonlight), head over to `chrome://flags`, and enable `Debugging for packed apps`
After restarting chrome, you should be able to right click -> `inspect` the moonlight app. It may be helpful to take moonlight out of fullscreen by clicking somewhere on the app and hitting `esc`. The Javascript console will appear in the bottom pane, or as a tab along the top. Moonlight-Chrome writes all its log messages to this console.
## Deleting all stored pairings
To completely reset Moonlight-Chrome back to its initial state, open the Javascript console and enter the following line:
```
chrome.storage.sync.clear()
```
If you have trouble bringing up the Javascript console, see [Reading the Chrome App Logs](https://github.com/moonlight-stream/moonlight-chrome/wiki/Home#reading-the-chrome-app-logs)