forked from Inve1951/BetterDiscordStuff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenableReactDevtools.plugin.js
58 lines (50 loc) · 1.93 KB
/
enableReactDevtools.plugin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//META { "name": "enableReactDevtools" } *//
var enableReactDevtools = (function(){
var listener, bw, versions, path;
class enableReactDevtools {
getName() { return "Enable React-Devtools" }
getDescription() { return "Automatically loads the React Devtools for you. Big thanks to Natsulus who helped figgure this out!" }
getAuthor() { return "square" }
getVersion() { return "0.0.3" }
start(){
bw = require("electron").remote.BrowserWindow.getAllWindows()[0];
bw.webContents.on("devtools-opened", listener);
}
stop(){
bw.webContents.removeListener("devtools-opened", listener);
}
load(){}
}
try {
switch(process.platform){
case 'win32':
path = require("path").resolve(process.env.LOCALAPPDATA, "Google/Chrome/User Data");
break;
case 'linux':
path = require("path").resolve(process.env.HOME, ".config/google-chrome");
break;
case 'darwin':
path = require("path").resolve(process.env.HOME, "Library/Application Support/Google/Chrome");
break;
default:
console.error("Unsupported platform: " + process.platform);
}
path += "/Default/Extensions/fmkadmapgofadopljbjfkapdkoienihi/";
versions = require("fs").readdirSync( path );
path = require("path").resolve( path, versions[versions.length - 1] )
} catch (e) {
path = null
if (e !== "ENOENT")
throw e;
console.error("Couldn't find react devtools in chrome extensions!");
}
listener = function(){
require("electron").remote.BrowserWindow.removeDevToolsExtension("React Developer Tools");
require("electron").webFrame.registerURLSchemeAsSecure("chrome-extension");
if( path != null && null != require("electron").remote.BrowserWindow.addDevToolsExtension( path ) )
console.log("Successfully installed react devtools.");
else
console.error("Couldn't find react devtools in chrome extensions!");
}
return enableReactDevtools;
})()