https://github.com/sbdh11/YoutubeRail
A Side Scrollbar for YoutubeRail!
https://github.com/sbdh11/YoutubeRail
Last synced: 3 months ago
JSON representation
A Side Scrollbar for YoutubeRail!
- Host: GitHub
- URL: https://github.com/sbdh11/YoutubeRail
- Owner: DeltaCoderr
- Created: 2019-11-01T08:50:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-21T06:06:04.000Z (almost 6 years ago)
- Last Synced: 2025-02-02T05:01:38.531Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.5 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YouTubeRail
Plays YouTube videos on a side rail.
## Preview
## Installation
* Download [Tampermonkey](https://tampermonkey.net/)
* Click "Create a new script..." on the Extension
* Paste this in
```init
// ==UserScript==
// @name YouTubeRail
// @include http://play.pokemonshowdown.com/*
// @include https://play.pokemonshowdown.com/*
// @version
// @description
// @author k_OS
// @icon https://raw.githubusercontent.com/DeltaCoderr/YouTubeRail/master/Icon.png
// @require https://code.jquery.com/jquery-latest.min.js
// ==/UserScript==
$.getScript('https://raw.githack.com/DeltaCoderr/YoutubeRail/master/main.js');
console.log('YouTubeRail loaded!');
```
* Click File > Save when you are done
* Go to [Pokémon Showdown!](https://play.pokemonshowdown.com/)
* Enable "YouTubeRail" in the Extensions
* Reload Pokémon Showdown! if the rail doesn't show
### JS
#### Vanilla
```JS
var pjsp = document.createElement('script');
pjsp.src = 'https://raw.githack.com/DeltaCoderr/YouTubeRail/master/main.js';
document.body.appendChild(pjsp);
```
#### jQuery
```JS
$.getScript('https://raw.githack.com/DeltaCoderr/YouTubeRail/master/main.js');
```