Skip to content

Commit e49d90f

Browse files
committed
bandaid on typescript errors to run build
2 parents cffe6e5 + cc982a9 commit e49d90f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+200
-34
lines changed

build.zip

-228 KB
Binary file not shown.

build/assets/icon128.png

4.03 KB

build/assets/icon48.png

2.3 KB

build/bundles/app.bundle.js

Lines changed: 56 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/bundles/background.bundle.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/bundles/content.bundle.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/devtools.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>Reactime</title>
9+
</head>
10+
11+
<body>
12+
<script type="text/javascript" src="devtools.js"></script>
13+
</body>
14+
15+
</html>

build/devtools.js

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

build/manifest.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "Reactime",
3+
"version": "3.2",
4+
"devtools_page": "devtools.html",
5+
"description": "A Chrome extension that helps debug React applications by memorizing the state of components with every render.",
6+
"manifest_version": 2,
7+
"content_security_policy": "script-src 'self' 'unsafe-eval' ; object-src 'self'",
8+
"background": {
9+
"scripts": ["bundles/background.bundle.js"],
10+
"persistent": false
11+
},
12+
"icons": { "48": "assets/icon48.png", "128": "assets/icon128.png" },
13+
"content_scripts": [
14+
{
15+
"matches": ["<all_urls>"],
16+
"js": ["bundles/content.bundle.js"]
17+
}
18+
],
19+
"permissions": ["contextMenus", "tabs", "<all_urls>"]
20+
}

build/panel.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
7+
<title>Document</title>
8+
</head>
9+
10+
<body>
11+
<div id="root"></div>
12+
<script type="text/javascript" src="bundles/app.bundle.js"></script>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)