Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chingc/x-show-all
Automatically click the "Show" button on sensitive content on ๐!
https://github.com/chingc/x-show-all
bookmarklet sensitive-content twitter uncensor x
Last synced: 3 days ago
JSON representation
Automatically click the "Show" button on sensitive content on ๐!
- Host: GitHub
- URL: https://github.com/chingc/x-show-all
- Owner: chingc
- License: mit
- Created: 2024-04-11T02:59:11.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-21T14:53:38.000Z (7 months ago)
- Last Synced: 2024-04-21T19:12:55.014Z (7 months ago)
- Topics: bookmarklet, sensitive-content, twitter, uncensor, x
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ๐ Show All
This is a bookmarklet for ๐ (Twitter) that will automatically click the "Show" button on sensitive content.
You were going to click it anyway. Let this bookmarklet do it for you!
### Language Support
The bookmarklet currently supports English and Japanese. If you'd like it to support your language let me know what "Show" appears as in your language.
## Setup
1. Create a new bookmark.
1. The bookmark name can be anything you want.
1. Copy paste this minified javascript and use it as the bookmark URL.
1. Save your new bookmark.```javascript
javascript:(()=>{if(!["twitter.com","x.com"].includes(window.location.hostname))return;const t=["Show","่กจ็คบ"],e=setInterval((()=>document.querySelectorAll('div[role="button"]').forEach((e=>{t.some((t=>t===e.textContent.trim()))&&e.click()}))),1e3);setTimeout((()=>clearInterval(e)),6e5)})();
```## Usage
1. Click your new bookmark when you see content hidden behind the "Show" button.
1. Watch everything magically reveal itself!The bookmarklet will continue working for 10 minutes before automatically stopping. It will also stop if you navigate away from ๐ or reload the site.
Simply click the bookmark again if needed.
## Troubleshooting
In Microsoft Edge, activating the bookmarklet from the favorites dropdown menu may not work. You will need to activate it from the favorites bar, which can be toggled with Ctrl+Shift+B.
## Code
This is the unminified javascript code. It should work on all major modern browsers.
```javascript
javascript:(() => {
const targetHosts = ['twitter.com', 'x.com'];
if (!targetHosts.includes(window.location.hostname)) {
return;
}
const showText = ['Show', '่กจ็คบ'];
const showAll = () => document.querySelectorAll('div[role="button"]').forEach(button => {
if (showText.some(str => str === button.textContent.trim())) button.click();
});
const timeoutDelay = 600000; // 600,000 ms = 10 min
const intervalDelay = 1000; // 1,000 ms = 1 sec
const intervalId = setInterval(showAll, intervalDelay);
setTimeout(() => clearInterval(intervalId), timeoutDelay);
})();
```## Support
Please like and share this with anyone that might find it useful.
You can also follow me on ๐ @ [NeonNoodle22](https://x.com/NeonNoodle22).
I appreciate it!