Skip to content

Commit c9dce14

Browse files
authored
Merge pull request #150 from oslabs-beta/dev
add zipped chrome extension and update readme
2 parents 7c34390 + 268a8d4 commit c9dce14

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ parents
77
coverage
88
src/extension/build.zip
99
src/extension/build.crx
10-
src/extension/build/key.pem
11-
bower_components
12-
package/__tests__/astParser.test.js
10+
src/extension/build.pem
11+
bower_components

build.zip

228 KB
Binary file not shown.

package/readme.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
[![Dependencies](https://david-dm.org/oslabs-beta/reactime.svg)](https://david-dm.org/oslabs-beta/reactime#info=dependencies)
1111
[![DevDependencies](https://david-dm.org/oslabs-beta/reactime/dev-status.svg)](https://david-dm.org/oslabs-beta/reactime?type=dev)
1212
[![Vulnerabilities](https://snyk.io/test/github/oslabs-beta/reactime/badge.svg)](https://snyk.io/test/github/oslabs-beta/reactime)
13+
1314
<p align="center">
1415
<a href="https://nodei.co/npm/reactime/"><img src="https://nodei.co/npm/reactime.png"></a>
1516

@@ -18,16 +19,16 @@
1819

1920
Reactime is a debugging tool for React developers. It records state whenever it is changed and allows the user to jump to any previously recorded state.
2021

21-
This dev tool is for React apps using stateful components and prop drilling, and has beta support for Context API, conditional state routing, Hooks (useState & useEffect) and functional components.
22+
This dev tool is for React apps using stateful components and prop drilling, and has beta support for Context API, conditional state routing, Hooks (useState & useEffect) and functional components.
2223

2324
One thing to note is that this library does not work well when mixing React with direct DOM manipulation.
2425

25-
Two parts are needed for this tool to function. The <a href="https://chrome.google.com/webstore/detail/react-time-travel/cgibknllccemdnfhfpmjhffpjfeidjga"><strong>chrome extension</strong></a> must be installed, and the <a href="https://www.npmjs.com/package/reactime"><strong>NPM package</strong></a> must be installed and used in the React code.
26+
Two parts are needed for this tool to function. The [**chrome extension**](https://chrome.google.com/webstore/detail/react-time-travel/cgibknllccemdnfhfpmjhffpjfeidjga) must be installed, and the [**NPM package**](https://www.npmjs.com/package/reactime) must be installed and used in the React code.
2627

2728
After successfully installing the chrome extension, you can test Reactime functionalities in the demo repositories below.
2829

29-
- <a href="http://reactime-demo1.us-east-1.elasticbeanstalk.com/">Calculator</a>
30-
- <a href="http://reactime-demo2.us-east-1.elasticbeanstalk.com/">Bitcoin Price Index</a>
30+
- [Calculator](http://reactime-demo1.us-east-1.elasticbeanstalk.com)
31+
- [Bitcoin Price Index](http://reactime-demo2.us-east-1.elasticbeanstalk.com)
3132

3233
## Installing
3334

@@ -75,7 +76,7 @@ Jumping is the most important feature of all. It allows you to jump to any previ
7576
### And Much More
7677

7778
- multiple tree graph branches depicting state changes
78-
- tree graph hover functionality to view state changes
79+
- tree graph hover functionality to view state changes
7980
- ability to pan and zoom tree graph
8081
- multiple tabs support
8182
- a slider to move through snapshots quickly
@@ -92,7 +93,7 @@ Jumping is the most important feature of all. It allows you to jump to any previ
9293
- **Josh Kim** - [@joshua0308](https://github.com/joshua0308)
9394
- **Sierra Swaby** - [@starkspark](https://github.com/starkspark)
9495
- **Ruth Anam** - [@peachiecodes](https://github.com/peachiecodes)
95-
- **David Chai** - [@davidchaidev](https://github.com/davidchaidev)
96+
- **David Chai** - [@davidchaidev](https://github.com/davidchai717)
9697
- **Yujin Kang** - [@yujinkay](https://github.com/yujinkay)
9798
- **Andy Wong** - [@andywongdev](https://github.com/andywongdev)
9899
- **Chris Flannery** - [@chriswillsflannery](https://github.com/chriswillsflannery)

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ This dev tool is for React apps using stateful components and prop drilling, and
2323

2424
One thing to note is that this library does not work well when mixing React with direct DOM manipulation.
2525

26-
Two parts are needed for this tool to function. The <a href="https://chrome.google.com/webstore/detail/react-time-travel/cgibknllccemdnfhfpmjhffpjfeidjga"><strong>chrome extension</strong></a> must be installed, and the <a href="https://www.npmjs.com/package/reactime"><strong>NPM package</strong></a> must be installed and used in the React code.
26+
Two parts are needed for this tool to function. The [**chrome extension**](https://chrome.google.com/webstore/detail/react-time-travel/cgibknllccemdnfhfpmjhffpjfeidjga) must be installed, and the [**NPM package**](https://www.npmjs.com/package/reactime) must be installed and used in the React code. You can also download [**zipped version**](build.zip) of the chrome extension and install it in [Developer mode](https://developer.chrome.com/extensions/faq#faq-dev-01) and turn on 'Allow access to file URLs' in extension details page if testing locally.
2727

2828
After successfully installing the chrome extension, you can test Reactime functionalities in the demo repositories below.
2929

30-
- <a href="http://reactime-demo1.us-east-1.elasticbeanstalk.com/">Calculator</a>
31-
- <a href="http://reactime-demo2.us-east-1.elasticbeanstalk.com/">Bitcoin Price Index</a>
30+
- [Calculator](http://reactime-demo1.us-east-1.elasticbeanstalk.com)
31+
- [Bitcoin Price Index](http://reactime-demo2.us-east-1.elasticbeanstalk.com)
3232

3333
## Installing
3434

@@ -103,7 +103,7 @@ Jumping is the most important feature of all. It allows you to jump to any previ
103103
- **Josh Kim** - [@joshua0308](https://github.com/joshua0308)
104104
- **Sierra Swaby** - [@starkspark](https://github.com/starkspark)
105105
- **Ruth Anam** - [@peachiecodes](https://github.com/peachiecodes)
106-
- **David Chai** - [@davidchaidev](https://github.com/davidchaidev)
106+
- **David Chai** - [@davidchaidev](https://github.com/davidchai717)
107107
- **Yujin Kang** - [@yujinkay](https://github.com/yujinkay)
108108
- **Andy Wong** - [@andywongdev](https://github.com/andywongdev)
109109
- **Chris Flannery** - [@chriswillsflannery](https://github.com/chriswillsflannery)

src/extension/build/build.zip

228 KB
Binary file not shown.

0 commit comments

Comments
 (0)