Skip to content

Commit

Permalink
Update cookie extraction setting example
Browse files Browse the repository at this point in the history
  • Loading branch information
xtne6f committed Apr 7, 2022
1 parent 6b18741 commit b9802f3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions NicoJK.ini
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,12 @@

; サーバ(.nicovideo.jp)に渡すクッキーを出力するコマンドを指定
; # 詳しくは説明ファイルを参照してください (デフォルトは "cmd /c echo ;"(投稿欄を表示するだけ))
; # サーバとの通信はすべてセキュアプロトコル(TLS)で行われます
; # 注意!有効にするときは行頭のセミコロンを消す!
; # Firefox用(18.0.1で確認済)
; execGetCookie="sqlite3.exe "{ここをプロファイルフォルダの場所に修正}\cookies.sqlite" -separator = "select name,value from moz_cookies where host='.nicovideo.jp' and path='/' and not isSecure and (name='nicosid' or name='user_session')""
; # Edge,GoogleChrome用(2020年時点)
; execGetCookie="sqlite3.exe "{ここをプロファイルフォルダの場所に修正}\Cookies" -separator = "select name,QUOTE(encrypted_value) from cookies where host_key='.nicovideo.jp' and path='/' and not is_secure and (name='nicosid' or name='user_session')""
; # Firefox用(99.0で確認済)
; execGetCookie="sqlite3.exe "{ここをプロファイルフォルダの場所に修正}\cookies.sqlite" -separator = "select name,value from moz_cookies where host='.nicovideo.jp' and path='/' and (name='nicosid' or name='user_session')""
; # Edge,GoogleChrome用(2022年時点)
; execGetCookie="sqlite3.exe "{ここをプロファイルフォルダの場所に修正}\Network\Cookies" -separator = "select name,QUOTE(encrypted_value) from cookies where host_key='.nicovideo.jp' and path='/' and (name='nicosid' or name='user_session')""
; execGetV10Key="jq.exe -r .os_crypt.encrypted_key "{ここをプロファイルフォルダの場所に修正}\..\Local State""
; # コメント投稿欄を表示しない
; execGetCookie=""
Expand Down

0 comments on commit b9802f3

Please sign in to comment.