-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
58 lines (54 loc) · 1.21 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* Created by londreblocker on 10/18/16.
*/
/**
* Local variables
*/
var debug = true;
var secureTab = null;
var secureTabId = -1;
var oldTab = null;
var singleton = false;
/**
* Window State Enum
*
* Controls how the window will be placed on the screen
* @type {{normal: string, minimized: string, maximized: string, fullscreen: string, docked: string}}
*/
var WindowState = {
Normal: "normal",
Minimized: "minimized",
Maximized: "maximized",
Fullscreen: "fullscreen",
Docked: "docked"
};
/**
* Template Type Enum
*
* Controlls the type of notification that will appear
* @type {{basic: string, image: string, list: string, progress: string}}
*/
var TemplateType = {
Basic: "basic",
Image: "image",
List: "list",
Progress: "progress"
};
/**
* Resource Type Enum
*
* Filter type s
* @type {{mainFrame: string, subFrame: string, stylesheet: string, script: string, image: string, font: string, object: string, xmlhttprequest: string, ping: string, other: string}}
*/
var ResourceType = {
MainFrame: "main_frame",
SubFrame: "sub_frame",
Stylesheet: "stylesheet",
Script: "script",
Image: "image",
Font: "font",
Object: "object",
XmlHttpRequest: "xmlhttprequest",
Ping: "ping",
Other: "other"
};