copy({...localStorage})
๐
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
<html> | |
<head> | |
<title>game_microblog from @insanj</title> | |
<link rel="icon" href="https://em-content.zobj.net/source/skype/289/video-game_1f3ae.png" /> | |
<style> | |
html, body { | |
margin: 0; | |
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | |
background: #070918; | |
color: #ebffda; |
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
delay 1 | |
tell application "System Events" to tell window 1 of (process 1 where it is frontmost) | |
try | |
set position to {0, 0} | |
end try | |
end tell |
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
// ==UserScript== | |
// @name youtube_like_after_30_seconds | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0.0 | |
// @description like videos after 30 seconds | |
// @author github.com/insanj | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
// @grant none | |
// @match *://*.youtube.com/* | |
// @run-at document-load |
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
// ==UserScript== | |
// @name instagram_checkmark | |
// @namespace https://github.com/insanj | |
// @version 1.0.0 | |
// @description Fun TamperMonkey Script To Give Yourself an Instagram Checkmark (Will Break) | |
// @author Julian <@insanj> Weiss | |
// @match https://www.tampermonkey.net/scripts.php?version=4.18.0&ext=dhdg&updated=true | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net | |
// @grant none | |
// @match *://instagram.com/* |
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
function hello() { | |
return new Promise((resolve, reject) => { | |
const world = async function() { | |
return 'hello'; | |
} | |
world().then(r => |
NOTE: This documentation/tool is for personal backup use ONLY. This is intentionally NOT built to be a "once and done" script to prevent abuse of the Instagram terms.
- Go to an Instagram user's page and grab all URLs using the Javascript console. Try the following command:
Array.prototype.slice.call(document.getElementsByTagName("img")).map(e => e.getAttribute("src")).join("\n")
- Copy and paste all the URLs you want to backup into a text file, such as
files.txt
. Make sure all URLs begin with the right base (in this case,instagram.com
).
- Open the Firefox Developer Tools panel (right click anywhere and select "Inspect Element")
- Go to the Debugger tab in the Developer Tools panel
- Find and open the "ui.min.js" file, normally in the path: Main Thread > 192.168.1.1 > js > ui.min.js
- Click the "{}" or eyeball symbol, normally in the bottom left corner of the file, to make it easier to read
NewerOlder