ultrawidify/js/conf/ExtensionConf.js
2017-12-31 18:28:03 +01:00

19 lines
304 B
JavaScript

// blacklist - ban blacklist.
// whitelist - ban all except whitelist
// none - ban all
var _ec_mode = "blacklist"
var _ec_init = function() {
if(Debug.debug){
console.log("pls implement");
console.log("this: ", this);
}
}
ExtensionConf = {
mode: _ec_mode,
init: _ec_init
}