-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpopup.js
146 lines (119 loc) · 4.92 KB
/
popup.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
document.getElementById('xpi-crx').addEventListener("click", async () => {
let url = await queryURL()
let [fileName, data, ext] = await getPackage(url)
downloadResult(data, fileName + ext)
})
document.getElementById('zip').addEventListener("click", async () => {
let url = await queryURL()
let [fileName, data, ext] = await getPackage(url)
if(ext == ".crx"){
data = await crx2zip(data)
}
downloadResult(data, fileName + ".zip")
})
document.getElementById('zip-beautify').addEventListener("click", async () => {
let url = await queryURL()
let [fileName, data, ext] = await getPackage(url)
data = await beautify(data)
downloadResult(data, fileName + ".zip")
})
function queryURL(){
return new Promise(resolve => {
chrome.tabs.query({ active: true, currentWindow: true }, tabs => resolve(tabs[0].url))
})
}
async function getPackage(url){
let host = (new URL(url)).host
let utils = [
["addons.mozilla.org", getFirefox],
["gnuzilla.gnu.org", getIcecat],
["addons.thunderbird.net", getThunderbird],
["chromewebstore.google.com", getChrome],
["microsoftedge.microsoft.com", getEdge],
["addons.opera.com", getOpera]
]
for(let util of utils){
if(host == util[0]){
return (await util[1](url))
}
}
}
async function getFirefox(url){
let id = url.replace(/.*?(firefox|android)\/addon\/(.*?)(\/|#|\?|$).*/, "$2");
let apiResponse = await fetch(`https://addons.mozilla.org/api/v5/addons/addon/${id}/`).then(r => r.json())
let fileName = `${id}-${apiResponse['current_version']['version']}`
let data = await fetch(apiResponse['current_version']['file']['url']).then(r => r.arrayBuffer())
return [fileName, data, ".xpi"]
}
async function getChrome(url){
let id = url.replace(/.*?\/detail\/(.*?)\/(.*?)(\/|#|\?|$).*/, "$2")
let name = url.replace(/.*?\/detail\/(.*?)\/(.*?)(\/|#|\?|$).*/, "$1")
let data = await fetch(`https://clients2.google.com/service/update2/crx?response=redirect&prodversion=49.0&acceptformat=crx3&x=id%3D${id}%26installsource%3Dondemand%26uc`).then(r => r.arrayBuffer())
let fileName = `${name}-${await findVersion(data)}`
return [fileName, data, ".crx"]
}
async function getEdge(url){
let id = url.replace(/.*?\/detail\/(.*?)\/(.*?)(\/|#|\?|$).*/, "$2")
let name = url.replace(/.*?\/detail\/(.*?)\/(.*?)(\/|#|\?|$).*/, "$1")
let data = await fetch(`https://edge.microsoft.com/extensionwebstorebase/v1/crx?response=redirect&x=id%3D${id}%26installsource%3Dondemand%26uc`).then(r => r.arrayBuffer())
let fileName = `${name}-${await findVersion(data)}`
return [fileName, data, ".crx"]
}
async function getOpera(url){
let id = url.replace(/.*?\/details\/(.*?)(\/|#|\?|$).*/, "$1")
let data = await fetch(`https://addons.opera.com/extensions/download/${id}/`).then(r => r.arrayBuffer())
let fileName = `${id}-${await findVersion(data)}`
return [fileName, data, ".crx"]
}
async function getIcecat(url) {
let content = await fetch(url).then(r => r.text())
let origURL = content.match(/(?<=<li>Orig: <a href=").*?(?=">)/)[0]
return getFirefox(origURL)
}
async function getThunderbird(url) {
let elem = document.createElement("html")
elem.innerHTML = await fetch(url).then(r => r.text())
let id = url.replace(/.*?thunderbird\/addon\/(.*?)(\/|#|\?|$).*/, "$1");
let version = elem.querySelector(".version-number").innerText
let fileName = `${id}-${version}`
let data = await fetch(elem.querySelector("a.button.download:not(.prominent)").href).then(r => r.arrayBuffer())
console.log(data)
return [fileName, data, ".xpi"]
}
async function findVersion(data){
let manifest = await unpackPackage(data).then(zip => zip.file('manifest.json').async('text'))
return JSON.parse(manifest)['version']
}
async function beautify(data){
let zip = await unpackPackage(data)
let promises = []
zip.forEach((path, file) => {
let promise = file.async("text").then(content =>{
path.endsWith(".js") ? zip.file(path, js_beautify(content)) : null
path.endsWith(".css") ? zip.file(path, css_beautify(content)) : null
path.endsWith(".html") ? zip.file(path, html_beautify(content)) : null
})
promises.push(promise)
})
await Promise.all(promises)
return (await zip.generateAsync({type: "arraybuffer"}))
}
async function crx2zip(data){
let zip = await unpackPackage(data)
return (await zip.generateAsync({type: "arraybuffer"}))
}
function unpackPackage(ab){
let zip = new JSZip()
return zip.loadAsync(ab)
}
function downloadResult(ab, name){
let blob =new Blob([ab], {type: "octet/stream"});
let blobLink = URL.createObjectURL(blob);
let a = document.createElement('a');
a.download = name;
a.href = blobLink
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(blobLink);
}