Skip to content

Commit 606aedc

Browse files
hfox0290dangitbobbehBagelEnthusiast
committed
Updates to main
Co-authored-by: dangitbobbeh <[email protected]> Co-authored-by: Nathan Richardson <[email protected]>
1 parent c292448 commit 606aedc

File tree

2 files changed

+32
-11
lines changed

2 files changed

+32
-11
lines changed

src/extension/background.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ const metrics = {};
1414
// which will hold test app's snapshots, link fiber tree info, chrome tab info, etc.
1515
//console.log("hello from background.js");
1616
function createTabObj(title) {
17+
// TO-DO for save button
18+
// Save State
19+
// Knowlege of the comparison snapshot
20+
// Check for it in the reducer
1721
// update tabsObj
1822
return {
1923
title,

src/extension/build/manifest.json

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,39 @@
11
{
2-
"name": "ReactimeX",
3-
"version": "8.0.0",
2+
"name": "ReactimevHarryFox",
3+
"version": "8.0.1",
44
"devtools_page": "devtools.html",
55
"description": "A Chrome extension that helps debug React applications by memorizing the state of components with every render.",
66
"manifest_version": 2,
7-
"content_security_policy":"script-src 'self' https://www.gstatic.com:* 'unsafe-eval'; object-src 'self'",
7+
"content_security_policy": "script-src 'self' https://www.gstatic.com:* 'unsafe-eval'; object-src 'self'",
88
"background": {
9-
"scripts": ["bundles/background.bundle.js"],
9+
"scripts": [
10+
"bundles/background.bundle.js"
11+
],
1012
"persistent": false
1113
},
12-
"icons": { "48": "assets/icon48.png", "128": "assets/icon128.png" },
14+
"icons": {
15+
"48": "assets/icon48.png",
16+
"128": "assets/icon128.png"
17+
},
1318
"content_scripts": [
1419
{
15-
"matches": ["http://localhost/*", "https://localhost/*"],
16-
"js": ["bundles/content.bundle.js"]
20+
"matches": [
21+
"http://localhost/*",
22+
"https://localhost/*"
23+
],
24+
"js": [
25+
"bundles/content.bundle.js"
26+
]
1727
}
1828
],
19-
"web_accessible_resources" : ["bundles/backend.bundle.js"],
20-
"permissions": ["contextMenus", "tabs", "activeTab", "http://localhost/*", "https://localhost/*"]
21-
22-
}
29+
"web_accessible_resources": [
30+
"bundles/backend.bundle.js"
31+
],
32+
"permissions": [
33+
"contextMenus",
34+
"tabs",
35+
"activeTab",
36+
"http://localhost/*",
37+
"https://localhost/*"
38+
]
39+
}

0 commit comments

Comments
 (0)