Skip to content

Commit 2777ca8

Browse files
thsnyzkntahsin.yazkan
andauthored
Create this command to open up a new chrome instance with web security disabled (raycast#811)
* Create this command to open up a new chrome instance with web security disabled. * Change packageName and title * Add chrome icon 64x64 * Update icon image. --------- Co-authored-by: tahsin.yazkan <[email protected]>
1 parent 43bc0b1 commit 2777ca8

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
6.58 KB
Loading
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
# Required parameters:
4+
# @raycast.schemaVersion 1
5+
# @raycast.title Open without CORS
6+
# @raycast.mode compact
7+
8+
# Optional parameters:
9+
# @raycast.icon images/chrome-icon.png
10+
# @raycast.packageName Chrome
11+
# @raycast.needsConfirmation false
12+
13+
# Documentation:
14+
# @raycast.description Open chrome with web security option disabled.
15+
# @raycast.author Tahsin Yazkan
16+
# @raycast.authorURL https://github.com/thsnyzkn
17+
18+
open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir="/tmp/chrome_dev_test" --disable-web-security
19+

0 commit comments

Comments
 (0)