Adds an Ember tab to Chrome or Firefox Developer Tools that allows you to inspect Ember objects in your application.
Install the extension from the Chrome Web Store.
OR:
- Clone the repository
- cd into the repo directory
- run
npm install - run
npm install -g grunt-cli - run
gruntto build thedist_chromedirectory - Visit chrome://extensions in chrome
- Make sure
Developer modeis checked - Click on 'Load unpacked extension...'
- Choose the
dist_chromefolder in the cloned repo - Close and re-open developer tools if it's already open
Install the Firefox addon.
OR:
- Clone the repository
- cd into the repo directory
- run
npm install - run
npm install -g grunt-cli - run
grunt build build_xpito build thedist_firefoxdirectory, download Firefox Addon SDK and build Firefox Addon XPI to 'tmp/xpi/ember-inspector.xpi' orgrunt run_xpito run the Firefox Addon in a temporary profile (or useFIREFOX_BINandFIREFOX_PROFILEto customize Firefox profile directory and Firefox binary used to run the extension)
Run npm install to install the required modules.
gruntto build the files in thedist_chromeanddist_firefoxdirectoriesgrunt testTo run the tests in the terminalgrunt build build_xpito download and build Firefox Addon XPI intotmp/xpi/exber-inspector.xpigrunt run_xpito run the Firefox Addon XPI on a temporary new profile (or useFIREFOX_BINandFIREFOX_PROFILEto customize Firefox profile directory and Firefox binary used to run the extension)grunt serverTo start the test server atlocalhost:9292grunt watchTo watch the files and re-build when anything changes (useful during development).
