fix for tampermonkey/greasemonkey
This commit is contained in:
parent
a46482057a
commit
de585b2ff8
|
@ -3,7 +3,7 @@
|
|||
// @namespace io.github.uhwot.dzunlock
|
||||
// @description enables deezer hifi features lol
|
||||
// @author uh wot
|
||||
// @version 1.1.4
|
||||
// @version 1.1.5
|
||||
// @license GPL-3.0-only
|
||||
// @homepageURL https://git.freezer.life/uhwot/dzunlock
|
||||
// @downloadURL https://git.freezer.life/uhwot/dzunlock/raw/branch/master/dzunlock.user.js
|
||||
|
@ -15,6 +15,7 @@
|
|||
// @require https://cdnjs.cloudflare.com/ajax/libs/aes-js/3.1.2/index.min.js
|
||||
// @grant GM_getValue
|
||||
// @grant GM_setValue
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
const debug = false
|
||||
|
@ -89,8 +90,8 @@ const clientSecret = '2f5b4c9785ddc367975b83d90dc46f5c'
|
|||
const playerTokenKey = [102, 228, 95, 242, 215, 50, 122, 26, 57, 216, 206, 38, 164, 237, 200, 85]
|
||||
|
||||
const formats = [
|
||||
{api: '320', gw: 'MP3_320'},
|
||||
{api: 'flac', gw: 'FLAC'}
|
||||
{ api: '320', gw: 'MP3_320' },
|
||||
{ api: 'flac', gw: 'FLAC' }
|
||||
]
|
||||
|
||||
function str2bin(str) {
|
||||
|
@ -140,7 +141,8 @@ async function renewAccessToken() {
|
|||
return access_token
|
||||
}
|
||||
|
||||
unsafeWindow.dzPlayer.setTrackList = (function (old) {
|
||||
window.addEventListener('DOMContentLoaded', (_) => {
|
||||
unsafeWindow.dzPlayer.setTrackList = (function (old) {
|
||||
return async function (...args) {
|
||||
// don't get filesizes if account is hifi
|
||||
if (unsafeWindow.dzPlayer.user_status.lossless) {
|
||||
|
@ -199,7 +201,8 @@ unsafeWindow.dzPlayer.setTrackList = (function (old) {
|
|||
|
||||
return old(...args)
|
||||
};
|
||||
})(unsafeWindow.dzPlayer.setTrackList);
|
||||
})(unsafeWindow.dzPlayer.setTrackList);
|
||||
});
|
||||
|
||||
fetchIntercept.register({
|
||||
request: function (url, config) {
|
||||
|
|
Loading…
Reference in New Issue