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
/* | |
This script is a custom script for the Android app [Untracker](https://github.com/zhanghai/Untracker). | |
When sharing a reel from the Instagram app on Android, you get a link in the format `https://www.instagram.com/share/reel/...`. | |
This link contains a redirect to a direct link to the reel, but with a hidden tracker. | |
This script removes the tracker and returns the direct link to the reel. | |
*/ | |
if ($.matches(url, 'www.instagram.com', '/share/reel/[^/]+/?')) { | |
let counter = 10; |
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
#!/bin/bash | |
# genera un launcher | |
# | |
# Folder | |
# | |
folder=/usr/local/share/applications/ | |
# Parse command line arguments |