-
Notifications
You must be signed in to change notification settings - Fork 11
/
ChromeREPL.sublime-commands
40 lines (40 loc) · 1.09 KB
/
ChromeREPL.sublime-commands
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
[
{
"caption": "Chrome REPL: Start Chrome (Secure) - use new profile",
"command": "chrome_repl_start_chrome"
},
{
"caption": "Chrome REPL: Start Chrome (SECURITY RISK!) - use normal profile",
"command": "chrome_repl_start_chrome_normal_profile"
},
{
"caption": "Chrome REPL: Restart Chrome (Secure) - use new profile",
"command": "chrome_repl_restart_chrome"
},
{
"caption": "Chrome REPL: Restart Chrome (SECURITY RISK!) - use normal profile",
"command": "chrome_repl_restart_chrome_normal_profile"
},
{
"caption": "Chrome REPL: Connect to Tab",
"command": "chrome_repl_connect_to_tab"
},
{
"caption": "Chrome REPL: Evaluate Selection",
"command": "chrome_repl_evaluate"
},
{
"caption": "Chrome REPL: Clear Console",
"command": "chrome_repl_clear"
},
{
"caption": "Chrome REPL: Reload Page",
"command": "chrome_repl_reload_page",
"args": { "ignoreCache": "False" }
},
{
"caption": "Chrome REPL: Reload Page (Ignore Cache)",
"command": "chrome_repl_reload_page",
"args": { "ignoreCache": "True" }
}
]