Skip to content

Commit 53be9df

Browse files
committed
more renames
1 parent 428630c commit 53be9df

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactime",
3-
"version": "1.1.1",
3+
"version": "2.0.0",
44
"description": "A library that helps debug React by memorizing the state of components with every render.",
55
"main": "index.js",
66
"repository": {

src/extension/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ chrome.tabs.onRemoved.addListener(tabId => {
167167
delete firstSnapshotReceived[tabId];
168168
});
169169

170-
// when react time travel is installed
170+
// when reactime is installed
171171
// create a context menu that will open our devtools in a new window
172172
chrome.runtime.onInstalled.addListener(() => {
173173
chrome.contextMenus.create({

src/extension/build/devtools.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8-
<title>React Time Travel</title>
8+
<title>Reactime</title>
99
</head>
1010

1111
<body>

src/extension/build/devtools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
chrome.devtools.panels.create('React Time Travel', null, 'panel.html', () => {});
1+
chrome.devtools.panels.create('Reactime', null, 'panel.html', () => {});

src/extension/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "React Time Travel",
2+
"name": "Reactime",
33
"version": "1.0",
44
"devtools_page": "devtools.html",
55
"description": "A Chrome extension that helps debug React by memorizing the state of components with every render.",

0 commit comments

Comments
 (0)