https://github.com/devmunoz/yt-subscriber.js
simple js script to perform a batch subscription process
https://github.com/devmunoz/yt-subscriber.js
Last synced: about 2 months ago
JSON representation
simple js script to perform a batch subscription process
- Host: GitHub
- URL: https://github.com/devmunoz/yt-subscriber.js
- Owner: devmunoz
- License: mit
- Created: 2024-12-03T12:55:44.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-12-04T07:50:18.000Z (6 months ago)
- Last Synced: 2025-02-09T05:38:38.654Z (3 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# yt-subscriber.js 🤖📺
simple javascript script to perform a batch subscription process
###### Last update: 12/2024
**DISCLAIMER:** This script relies on the content and structure of the YouTube website. As the site is dynamic, this script may stop working if YouTube changes its layout. It is provided "as is" without warranty of any kind.
### Usage
1 - Open the browser and open the youtube account that will be subscribed to the list of channels
2 - Open the browser's console.
3 - Paste the function in the console
4 - Paste the list of URLs:
```
const urls = [
"https://www.youtube.com/channel/channel_ID_1",
"https://www.youtube.com/channel/channel_ID_2",
// ...
];
```5 - Trigger the function
```
handleSubscriptions(urls, "subscribe"); //to subscribe
handleSubscriptions(urls, "unsubscribe"); //to unsubscribe
```6 - See the magic :)