고객 지원은 저희 깃플에게 맡기고, 여러분의 핵심 서비스에 집중하세요.
고객지원 센터를 구축 하려는
홈페이지 및 모바일앱 서비스 제공사를 위해
채팅기반의 고객지원 서비스인
깃플 채팅상담은
상담원의 고객대응 생산성을 높여주고, 앱 사용자가 쉽게 문의할수 있도록 도와줍니다.
네이버톡톡이나 카톡같이 타사 플랫폼에 종속되는 것과 다르게
| /* PrismJS 1.17.1 | |
| https://prismjs.com/download.html#themes=prism-dark&languages=markup+css+clike+javascript+markdown */ | |
| /** | |
| * prism.js Dark theme for JavaScript, CSS and HTML | |
| * Based on the slides of the talk “/Reg(exp){2}lained/” | |
| * @author Lea Verou | |
| */ | |
| code[class*="language-"], | |
| pre[class*="language-"] { |
| #!/bin/bash | |
| # | |
| # This script will browse a Slack export folder and download all files in a new /export folder | |
| # | |
| # HOW TO: | |
| # 1. As a Workspace admin, download an export of your Slack history (https://www.slack.com/services/export) | |
| # 2. Make sure you have jq installed (https://stedolan.github.io/jq/) | |
| # 3. Place this file at the root of your Slack export folder, next to channels.json | |
| # 4. Run `bash slack-files-downloader.sh` in your terminal | |
| # |
| h1, h2 { | |
| text-align: center; | |
| } | |
| /* ① 항, 1.호 */ | |
| ol > li:nth-child(1)::marker { content: '① '; } | |
| ol > li:nth-child(2)::marker { content: '② '; } | |
| ol > li:nth-child(3)::marker { content: '③ '; } | |
| ol > li:nth-child(4)::marker { content: '④ '; } | |
| ol > li:nth-child(5)::marker { content: '⑤ '; } | |
| ol > li:nth-child(6)::marker { content: '⑥ '; } |
| #!/bin/bash | |
| export LC_ALL=en_US.UTF-8 | |
| noteId=$(osascript -e 'tell application "Notes" | |
| set noteID to «class seld» of (selection as record) | |
| get noteID | |
| end tell' | cut -d/ -f5 | cut -c2-) | |
| echo "SELECT '['||note.ztitle1||'](applenotes:note/'||note.zidentifier||')' FROM ziccloudsyncingobject AS note WHERE note.z_pk = $noteId;" | | |
| sqlite3 ~/Library/Group\ Containers/group.com.apple.notes/NoteStore.sqlite | |
| #!/bin/bash | |
| ARG1=$1 | |
| META_ONLY=false | |
| NL=$'\n' | |
| if [ "$ARG1" = "-m" ]; then | |
| META_ONLY=true | |
| elif [ "$ARG1" = "-h" ]; then | |
| echo "Usage: $0 -hm" |
flowchart TD
subgraph 보유 및 파기 절차
A[소비자 불만/분쟁처리 기록] -->|보유 근거| B["전자상거래 등에서의 소비자 보호에 관한 법률"]
A -->|보유 기간| C["3년"]
C -->|경과 시| D["「개인정보 보호법」 및 자사 개인정보 처리방침에 따라 지체 없이 파기"]
D -->|법령에 따라 보존 필요 시| E["별도 DB로 분리 보관"]
E -->|보존기간 종료 시| F["즉시 파기"]
G[공개 및 안내] -->|근거| H["자사 개인정보 처리방침 및 이용약관"]
H --> I["이용자에게 공개"]