2 Commits
Author SHA1 Message Date
Vitaly Gashkov cbdde54471 1.3.4 2025-11-04 19:49:27 +05:00
Vitaly Gashkov 777eb4ee2b fix: update tv app id 2025-11-04 19:48:37 +05:00
3 changed files with 7 additions and 10 deletions
+4 -7
View File
@@ -16,13 +16,10 @@ const downloadMobileApk = async () => {
const downloadTvApk = async () => {
const source = 'https://webservices.aptoide.com/webservices/3/getApkInfo';
const formData = new FormData();
formData.append('identif', 'id:71666229');
formData.append('mode', 'json');
const response = await fetch(source, {
method: 'POST',
body: formData,
});
const body = new FormData();
body.append('identif', 'id:72075737');
body.append('mode', 'json');
const response = await fetch(source, { method: 'POST', body });
const json = await response.json();
const url = json.apk.path;
const filepath = join(process.cwd(), 'crunchyroll.apk');
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "crextractor",
"version": "1.3.3",
"version": "1.3.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "crextractor",
"version": "1.3.3",
"version": "1.3.4",
"funding": [
{
"type": "individual",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "crextractor",
"version": "1.3.3",
"version": "1.3.4",
"description": "Utility for extracting credentials from the Crunchyroll Android app",
"main": "crextractor.js",
"bin": {