-
Notifications
You must be signed in to change notification settings - Fork 5
/
apar.js
27 lines (20 loc) · 1.09 KB
/
apar.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
(function(){
var apps_urls = {
creapp: "https://www.apkonline.net/runapk/create-androidapk.html?app=android_6.0_blank",
files: "https://www.apkonline.net/appdirect/filemanager.html",
usersettings: "https://www.apkonline.net/appdirect/apkonlinechangeuser.html",
};
for (var link_id in apps_urls){
var url = apps_urls[link_id];
document.getElementById(link_id).firstElementChild.href = url;
}
aaa = encodeURIComponent("https://www.apkonline.net/appdirect/filemanager.html");
document.getElementById("usersettings").firstElementChild.href = "https://www.apkonline.net/appdirect/apkonlinechangeuser.html?ira=" + aaa;
document.getElementById('situation').innerText = `Using ApkOnline Android online Arcade games`;
for (var link_id in apps_urls) {
var localLabel = chrome.i18n.getMessage("new_" + link_id);
document.querySelector(`#${link_id} .label`).innerText = localLabel;
}
document.querySelector(`#files .label`).innerText = "My Apk Manager & Apk Upload";
document.querySelector(`#usersettings .label`).innerText = "Set userid";
})();