├── .github └── workflows │ └── generate-file.yml ├── .gitignore ├── .vscode └── settings.json ├── Changelog.md ├── LICENSE ├── README.md ├── css ├── style_chat.css ├── style_content.css └── style_control.css ├── generated └── Tabview-Youtube.user.js ├── images └── icon128p.png ├── js ├── content.js └── injection_script_1.js ├── manifest.json ├── userscript └── template.js ├── userstyle └── 467638-tabview-customization.user.css └── version.ini /.github/workflows/generate-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/.github/workflows/generate-file.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/README.md -------------------------------------------------------------------------------- /css/style_chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/css/style_chat.css -------------------------------------------------------------------------------- /css/style_content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/css/style_content.css -------------------------------------------------------------------------------- /css/style_control.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/css/style_control.css -------------------------------------------------------------------------------- /generated/Tabview-Youtube.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/generated/Tabview-Youtube.user.js -------------------------------------------------------------------------------- /images/icon128p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/images/icon128p.png -------------------------------------------------------------------------------- /js/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/js/content.js -------------------------------------------------------------------------------- /js/injection_script_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/js/injection_script_1.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/manifest.json -------------------------------------------------------------------------------- /userscript/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/userscript/template.js -------------------------------------------------------------------------------- /userstyle/467638-tabview-customization.user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tabview-youtube/Tabview-Youtube/HEAD/userstyle/467638-tabview-customization.user.css -------------------------------------------------------------------------------- /version.ini: -------------------------------------------------------------------------------- 1 | 4.73.41 --------------------------------------------------------------------------------