This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name CleanNaver | |
@namespace github.com/openstyles/stylus | |
@version 1.0.0 | |
@description Stylesheet for redesign http://naver.com index page. | |
@author bexoss | |
==/UserStyle== */ | |
@-moz-document url-prefix("https://www.naver.com/"), | |
url-prefix("https://naver.com/") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Privacy Policy | |
_Last updated: 2025‑04‑17_ | |
**“쿠팡 주문목록 추출”**(이하 “확장 프로그램”)은 사용자의 개인정보를 수집·보관·전송하지 않습니다. | |
## 1. 수집하는 정보 | |
- 쿠팡 주문 페이지에 표시된 주문일, 주문번호, 상품명, 금액, 주문상태 | |
- **모든 데이터는 사용자의 브라우저 메모리 내에서만 처리**되며 외부로 전송되지 않습니다. | |
## 2. 정보 이용 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 의존성 모듈 정의 | |
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var Promise = require('promise'); | |
var mongoose = require('mongoose'); | |
// DB | |
mongoose.connect('mongodb://localhost/sampledb'); | |
mongoose.Promise = global.Promise; | |
var Schema = mongoose.Schema; |