forked from SthephanShinkufag/Dollchan-Extension-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextern.js
More file actions
76 lines (71 loc) · 1.55 KB
/
extern.js
File metadata and controls
76 lines (71 loc) · 1.55 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* @externs
*/
/** @return {String} */ Document.prototype.getSelection = function() {};
/** @type {Object} */ Window.opera;
/** @type {Object} */ Window.opera.scriptStorage;
/**
* @param {String} html
* @return {Node}
*/
Document.prototype.implementation.createHTMLDocument = function(html) {};
/**
* @param {Function|string} callback
* @param {number} delay
* @param {...*} var_args
* @return {number}
*/
function setTimeout(callback, delay, var_args) {};
/**
* @constructor
* @return {Object}
* @nosideeffects
*/
function MozBlobBuilder() {};
Window.JSON = {};
/**
* @param {string} text
* @param {(function(string, *) : *)=} opt_reviver
* @return {*}
*/
Window.JSON.parse = function(text, opt_reviver) {};
/** @type {String} */ XMLHttpRequest.prototype.finalUrl;
var localStorage = {}, sessionStorage = {}, self = {};
/**
* @param {String} text
* @return {undefined}
*/
function GM_log(text) {};
/**
* @param {String} text
* @return {undefined}
*/
Window.GM_log = function(text) {};
/**
* @param {Object} obj
* @return {undefined}
*/
function GM_xmlhttpRequest(obj) {};
/**
* @param {Object} obj
* @return {undefined}
*/
Window.GM_xmlhttpRequest = function(obj) {};
/**
* @param {String} name
* @param {String} value
* @return {undefined}
*/
function GM_setValue(name, value) {};
/**
* @param {String} name
* @return {String}
*/
function GM_getValue(name) {};
/**
* @param {String} url
* @param {Boolean} loadInBackground
* @param {Boolean} reuseTab
* @return {undefined}
*/
function GM_openInTab(url, loadInBackground, reuseTab) {};