An open API service indexing awesome lists of open source software.

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!

Awesome Lists containing this project

README

          

# YouTubeRail
Plays YouTube videos on a side rail.

## Preview


YouTubeRail

## 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');
```