This file contains hidden or 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
| /** Mastodon has an API endpoint for instance, which returns all activated users, | |
| but no count of all users (unconfirmed as well), so i had to implement this myself*/ | |
| setTimeout(() => { | |
| let reportedCount = 0; | |
| let checkLatestId = () => { | |
| fetch(`${host}/api/v1/instance`).then(res => { | |
| res.json().then(data => { | |
| reportedCount = data.stats.user_count; | |
| smc.set("fakeTotal", reportedCount); | |
| }); |
This file contains hidden or 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
| var simpleLS = { | |
| set : function(obj, val){ | |
| localStorage.setItem(obj, $.fn.stringifyJSON(val)); | |
| }, | |
| get: function(obj){ | |
| return $.parseJSON($.fn.stringifyJSON(localStorage.getItem(obj))) || {}; | |
| } | |
| }; |
This file contains hidden or 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
| /**!checkes5 by Blubbll*/ | |
| var es5 = | |
| void 0!==Object.create&& | |
| void 0!==Object.freeze&& | |
| void 0!==Array.isArray&& | |
| void 0!==Array.prototype.some&& | |
| void 0!==Array.prototype.forEach&& | |
| void 0!==Date.prototype.toISOString&& | |
| void 0!==Function.prototype.bind&& | |
| void 0!==JSON.parse; |
This file contains hidden or 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
| var cors = ('withCredentials' in new XMLHttpRequest()|| typeof XDomainRequest === 'undefined'); |
This file contains hidden or 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
| var cors="withCredentials"in new XMLHttpRequest?1:"undefined"!=typeof XDomainRequest?2:0; |
This file contains hidden or 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
| /* customheaderbg, fixed header */ | |
| #header { | |
| position: fixed; | |
| right: 0; | |
| left: 0; | |
| background: #22313a; | |
| border-bottom: 16px solid #1e2a31; | |
| } |
This file contains hidden or 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
| https://www.deezer.com/desktop/download?platform=win32&architecture=x86 |
This file contains hidden or 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
| try{function dummy(){}new dummy,window.es4=!0}catch(n){window.es4=!1} |
This file contains hidden or 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
| // 250 = 3g | |
| // 350 = 1g | |
| // 50 = 4g | |
| //150 = 3g |
This file contains hidden or 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
| //String ReplaceAll | |
| String.prototype.replaceAll = function(search, replacement) { | |
| var target = this; | |
| return target.split(search).join(replacement); | |
| }; | |
| document.title=location.href.replace("https://bs.to/serie/","").replace("/Streamango","").replaceAll("/","_") | |
| //für videofiles |