21 lines
373 B
JavaScript
21 lines
373 B
JavaScript
|
|
var TaskUrl = "http://localhost:7123/task/get";
|
|
const TaskIDKey = "chrome_proxy_tid_key"
|
|
|
|
const BackgroundMsgType = {
|
|
NOTWANT: 'notwant',
|
|
CONTENT: 'content',
|
|
GETTASK: 'gettask',
|
|
TIMEOUT: 'timeout',
|
|
ERROR: 'error',
|
|
OK: 'ok',
|
|
}
|
|
|
|
const InjectMsgType = {
|
|
FETCH: 'fetch',
|
|
WAIT: 'wait',
|
|
ERROR: 'error',
|
|
NOTASK: 'notask',
|
|
OK: 'ok',
|
|
}
|