├── .gitignore ├── .jscsrc ├── .jshintrc ├── Gruntfile.js ├── LICENSE ├── README.md ├── package.json └── src ├── Info.plist ├── Settings.plist ├── images ├── dailymotion-icon.svg ├── netflix-icon.svg ├── piptool-menu-icon.png ├── plex-icon.svg └── youtube-icon.svg ├── index.html ├── params.json ├── scripts ├── global.js └── main.js └── stylesheets └── main.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | ._* 4 | build.safariextension 5 | node_modules 6 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/package.json -------------------------------------------------------------------------------- /src/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/Info.plist -------------------------------------------------------------------------------- /src/Settings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/Settings.plist -------------------------------------------------------------------------------- /src/images/dailymotion-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/images/dailymotion-icon.svg -------------------------------------------------------------------------------- /src/images/netflix-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/images/netflix-icon.svg -------------------------------------------------------------------------------- /src/images/piptool-menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/images/piptool-menu-icon.png -------------------------------------------------------------------------------- /src/images/plex-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/images/plex-icon.svg -------------------------------------------------------------------------------- /src/images/youtube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/images/youtube-icon.svg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/index.html -------------------------------------------------------------------------------- /src/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/params.json -------------------------------------------------------------------------------- /src/scripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/scripts/global.js -------------------------------------------------------------------------------- /src/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/scripts/main.js -------------------------------------------------------------------------------- /src/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfmatei/PiPTool/HEAD/src/stylesheets/main.css --------------------------------------------------------------------------------