forked from rpeng220/kaleidoscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
31 lines (26 loc) · 1020 Bytes
/
config.js
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
const WEBURL = "http://52.53.255.123:3004/api/v1";
// message between background, applicationForm and content script
const MESSEGE_TYPE = "MESSEGE_TYPE";
const RESUME_MES = "Resume";
const JOB_URL_MES = "JobUrl";
const APPLICATION_MES = "Apply";
const USER_ID = "User";
const APPLY_COUNT = "ApplyCount";
const DATA_RESUME = "DATA_RESUME";
const DATA_FIRST_NAME = "DATA_FIRST_NAME";
const DATA_LAST_NAME = "DATA_LAST_NAME";
const DATA_PHONE = "DATA_PHONE";
const DATA_EMAIL = "DATA_EMAIL";
const DATA_ADDRESS = "DATA_ADDRESS";
const DATA_COLLEGE = "DATA_COLLEGE";
const DATA_MAJOR = "DATA_MAJOR";
const DATA_GRADUATE_DATE = "DATA_GRADUATE_DATE";
var RESUME_DATA_FIELDS = [
DATA_FIRST_NAME,
DATA_LAST_NAME,
DATA_PHONE,
DATA_EMAIL,
DATA_ADDRESS,
DATA_COLLEGE,
DATA_MAJOR,
DATA_GRADUATE_DATE];