fix popup and improve install instructions to fix #39
This commit is contained in:
14
README.md
14
README.md
@@ -1,13 +1,15 @@
|
|||||||
chrome-wakatime
|
chrome-wakatime
|
||||||
===============
|
===============
|
||||||
|
|
||||||
Get stats about your website debugging, research, documentation, etc.
|
Automatic time tracking for stats about your website debugging, research, documentation, etc.
|
||||||
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
1. Install the extension inside Chrome.
|
1. Install the extension:
|
||||||
|
|
||||||
|
https://chrome.google.com/webstore/detail/wakatime/jnbbnacmeggbgdjgaoojpmhdlkkpblgi
|
||||||
|
|
||||||
2. Login to [WakaTime](https://wakatime.com/).
|
2. Login to [WakaTime](https://wakatime.com/).
|
||||||
|
|
||||||
@@ -34,16 +36,16 @@ To get started, install NPM and Bower dependencies, and do an initial build with
|
|||||||
npm start
|
npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
Run Gulp once:
|
To build the extension once:
|
||||||
|
|
||||||
```
|
```
|
||||||
gulp
|
npm run gulp
|
||||||
```
|
```
|
||||||
|
|
||||||
Run Gulp and monitor changes:
|
To monitor changes:
|
||||||
|
|
||||||
```
|
```
|
||||||
gulp watch
|
npm run watch
|
||||||
```
|
```
|
||||||
|
|
||||||
Run tests:
|
Run tests:
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
"test-react": "jest --verbose --coverage",
|
"test-react": "jest --verbose --coverage",
|
||||||
"test-js": "node_modules/.bin/phantomjs tests/run.js",
|
"test-js": "node_modules/.bin/phantomjs tests/run.js",
|
||||||
"start": "npm install && bower install && gulp",
|
"start": "npm install && bower install && gulp",
|
||||||
|
"gulp": "gulp",
|
||||||
"watch": "gulp watch",
|
"watch": "gulp watch",
|
||||||
"lint": "jsxhint --jsx-only .",
|
"lint": "jsxhint --jsx-only .",
|
||||||
"postinstall": "gulp postinstall"
|
"postinstall": "gulp postinstall"
|
||||||
|
|||||||
@@ -12,6 +12,6 @@
|
|||||||
|
|
||||||
<div id="wakatime"></div>
|
<div id="wakatime"></div>
|
||||||
|
|
||||||
<script src="public/js/bundle.js"></script>
|
<script src="public/js/app.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user