-
Go to twitter.com
-
Run in console
document.designMode = 'on'OR
document.body.setAttribute('contenteditable', true)
document.body.setAttribute('spellcheck', false)Go to twitter.com
Run in console
document.designMode = 'on'OR
document.body.setAttribute('contenteditable', true)
document.body.setAttribute('spellcheck', false)| #!/bin/sh | |
| ## OS/ENVIRONMENT INFO DETECTION | |
| ostype="$(uname)" | |
| if command -v getprop > /dev/null; then | |
| linuxtype=android | |
| else | |
| linuxtype=none |