18 lines
304 B
JavaScript
18 lines
304 B
JavaScript
|
|
var TaskUrl = "http://localhost:7123/task/get";
|
|
const TaskIDKey = "chrome_proxy_tid_key"
|
|
|
|
const BackgroundMsgType = {
|
|
|
|
CONTENT: 'content',
|
|
GETTASK: 'gettask',
|
|
TIMEOUT: 'timeout',
|
|
ERROR: 'error',
|
|
}
|
|
|
|
const InjectMsgType = {
|
|
FETCH: 'fetch',
|
|
WAIT: 'wait',
|
|
ERROR: 'error',
|
|
}
|