Skip to content

Commit a26753d

Browse files
authored
Merge pull request #132 from Gossamer-React/neyser-previous-log
trying to use only activeTabs. Not possible
2 parents f287535 + 1784abc commit a26753d

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

build/lucid.zip

25 Bytes
Binary file not shown.

build/manifest.json

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,19 @@
33
"name": "lucid",
44
"description": "A React-GraphQL developer tool.",
55
"version": "1.0.1",
6-
"permissions": [
7-
"activeTab"
8-
],
96
"devtools_page": "devtools.html",
107
"homepage_url": "https://github.com/Gossamer-React/React-Lucid",
11-
"content_scripts": [{
12-
"run_at": "document_end",
13-
"matches": ["<all_urls>"],
14-
"js": ["contentScript.js"]
15-
}],
8+
"content_scripts": [
9+
{
10+
"run_at": "document_end",
11+
"matches": [
12+
"<all_urls>"
13+
],
14+
"js": [
15+
"contentScript.js"
16+
]
17+
}
18+
],
1619
"background": {
1720
"scripts": [
1821
"backgroundScript.js"
@@ -22,7 +25,9 @@
2225
"reactTraverser.js"
2326
],
2427
"externally_connectable": {
25-
"ids": ["*"]
28+
"ids": [
29+
"*"
30+
]
2631
},
2732
"icons": {
2833
"128": "hexagonFAT.png"

build/reactTraverser.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
let timeout;
22
let reactGlobalHook = window.__REACT_DEVTOOLS_GLOBAL_HOOK__;
3-
console.log('ran reacttraverser.js', reactGlobalHook)
43

54
if (reactGlobalHook) {
65

@@ -13,7 +12,6 @@ if (reactGlobalHook) {
1312
// setHook();
1413
// reactGlobalHook.onCommitFiberRoot();
1514
// })
16-
1715
function setHook() {
1816
//React 16+
1917
if (reactInstance && reactInstance.version) {

build/webpack-bundle.js

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

build/webpack-bundle.js.map

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

src/devtools.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ class App extends Component {
196196
<div id='devToolsLoader'>
197197
<img src='./lucidlogo-card-transparent.png' alt='devtool logo' />
198198
<h1>Please trigger a setState() to activate Lucid devtool.<br /></h1>
199+
<p>Lucid requires React Devtools to run.</p>
199200
<p>Lucid works best on apps using React v16+ in development mode</p>
200201
</div>
201202
:

0 commit comments

Comments
 (0)