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 findDuplicatesInOnetab() { | |
const isOneTab = document | |
.querySelector("title") | |
?.innerHTML.includes("OneTab"); // cheap OneTab check | |
if (!isOneTab) { | |
alert("Run this script in a OneTab tab"); | |
return; | |
} | |
const getOneTabLinks = () => [ |
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 configID = "<CONFIG-ID>"; | |
const ignoreDomainsSet = new Set([ | |
"clients.l.google.com", | |
"clients1.google.com", | |
"clients2.google.com", | |
"clients3.google.com", | |
"clients4.google.com", | |
"clients5.google.com", | |
"clients6.google.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
adb help // List all comands | |
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader |
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
== Adb Server | |
adb kill-server | |
adb start-server | |
== Adb Reboot | |
adb reboot | |
adb reboot recovery | |
adb reboot-bootloader | |
== Shell |
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 | |
echo "Setting up a new PR" | |
# Ask for username | |
echo "Please enter the original GitHub organization or username of the repository (the part of the URL after github.com/): " | |
read org | |
# Ask for repo | |
echo "Please enter the repository name: " | |
read name | |
#Ask for branch | |
read -e -p "Please enter the branch of the repository you wish to use: " -i "main" branch |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// Break Timers on websites with ease. | |
function timerKiller(){ | |
var lastCleanedBorder = 0; | |
return function () { | |
var id = window.setTimeout(function() {}, 0); | |
for(var i = lastCleanedBorder; i <= id; i++) { | |
window.clearTimeout(i); | |
} | |
lastCleanedBorder = id + 1; |
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
{"lastUpload":"2021-12-10T20:34:10.408Z","extensionVersion":"v3.4.3"} |