This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "PCSX2 Ripper", | |
"author": "afkarxyz", | |
"version": (1, 0), | |
"blender": (3, 6, 0), | |
"location": "View3D > N-Panel > PCSX2 Ripper", | |
"description": "Helps scale objects and separate objects based on materials from PCSX2 Ripper.", | |
"category": "Object", | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Lucida Downloader | |
// @description Download music from Spotify, Qobuz, Tidal, Soundcloud, Deezer, Amazon Music and Yandex Music via Lucida. Adds download buttons and floating button. | |
// @icon https://raw.githubusercontent.com/afkarxyz/misc-scripts/refs/heads/main/lucida/lucida.png | |
// @version 2.0 | |
// @author afkarxyz | |
// @namespace https://github.com/afkarxyz/misc-scripts/ | |
// @supportURL https://github.com/afkarxyz/misc-scripts/issues | |
// @license MIT | |
// @match https://open.spotify.com/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const observer = new PerformanceObserver((list) => { | |
list.getEntries().forEach((entry) => { | |
if (entry.name.toLowerCase().endsWith('.mp3')) { | |
console.log(entry.name); | |
} | |
}); | |
}); | |
observer.observe({ entryTypes: ['resource'] }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
console.log("Artlist.io Audio Link Catcher started"); | |
const audioLinks = new Set(); | |
function processResponse(responseText) { | |
try { | |
const data = JSON.parse(responseText); | |
const items = data.data.songList?.songs || data.data.sfxList?.songs || data.data.songs || data.data.sfxs || []; | |