├── .gitattributes ├── .gitignore ├── LICENSE ├── Makefile ├── Tweak.x ├── YouTubeX.plist └── control /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouTube-X/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | .DS_Store 3 | packages -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouTube-X/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouTube-X/HEAD/Makefile -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouTube-X/HEAD/Tweak.x -------------------------------------------------------------------------------- /YouTubeX.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouTube-X/HEAD/YouTubeX.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/YouTube-X/HEAD/control --------------------------------------------------------------------------------