Skip to content

Instantly share code, notes, and snippets.

@sidneys
Last active January 23, 2024 21:12
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save sidneys/3c05e549e19eaa23a545b845f8b8a766 to your computer and use it in GitHub Desktop.
Save sidneys/3c05e549e19eaa23a545b845f8b8a766 to your computer and use it in GitHub Desktop.
UserScript | iOSGods App Store | Direct .IPA File Download
// ==UserScript==
// @name iOSGods: Direct App Store .IPA Download
// @namespace de.sidneys.userscripts
// @homepage https://gist.githubusercontent.com/sidneys/
// @version 1.0.0
// @description Download .IPA files directly from the iOSGods App Store (app.iosgods.com) without a "ViP" subscription.
// @author sidneys
// @icon https://app.iosgods.com/apple-touch-icon.png
// @include http*://app.iosgods.com/store/*
// @require https://greasyfork.org/scripts/38888-greasemonkey-color-log/code/Greasemonkey%20%7C%20Color%20Log.js
// @require https://greasyfork.org/scripts/374849-library-onelementready-es6/code/Library%20%7C%20onElementReady%20ES6.js
// @require https://cdn.jsdelivr.net/npm/plist@3.0.1/dist/plist.min.js
// @connect iosgods.com
// @grant GM.addStyle
// @grant GM.download
// @run-at document-end
// ==/UserScript==
/* global onElementReady */
/* global plist */
/**
* ESLint
* @global
*/
Debug = false
/**
* Init
*/
let init = () => {
console.debug('init')
// Wait for element (Button "Install")
onElementReady('.app--detail__downloads > .btn-download', false, (installElement) => {
// Get url of iTunes OTA Manifest (XML Property List)
const installUrl = new URL(installElement.dataset.href)
const manifestHref = installUrl.searchParams.get('url')
// Status
console.info('iTunes OTA Manifest URL:', manifestHref)
// Download iTunes OTA Manifest
fetch(manifestHref)
.then((response) => {
if (!response.ok) {
console.error('Error', 'fetch', response.status)
throw new Error(response.status)
}
return response.text()
})
.then((responseText) => {
// Parse iTunes Manifest for .IPA URL
const manifestObject = plist.parse(responseText)
const packageObject = manifestObject.items[0].assets.find(asset => asset.kind === 'software-package')
const ipaHref = packageObject.url
// Status
console.info('.IPA file URL:', ipaHref)
// Wait for element (Button "Download .IPA File for Impactor")
onElementReady('div.actions-button:nth-child(2)', false, (downloadElement) => {
console.info(downloadElement)
// Remove all click events from button
const downloadElementClone = downloadElement.cloneNode(true)
downloadElement.parentNode.replaceChild(downloadElementClone, downloadElement)
// Add button link
downloadElementClone.onclick = () => window.open(ipaHref, '_new')
// Add checkmark to button label and change its color
downloadElementClone.textContent = `✓ ${downloadElementClone.textContent}`
downloadElementClone.style.color = 'rgb(76, 217, 100)'
// Status
console.info('Download button successfully updated.')
})
})
})
}
/**
* @listens window:Event#load
*/
window.addEventListener('load', () => {
console.debug('window#load')
init()
})
@growtopiajaw
Copy link

does this still work for you?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment