├── .gitignore ├── .markdownlint.json ├── .swiftformat ├── .swiftlint.yml ├── .vscode └── tasks.json ├── LICENSE.md ├── README.md ├── workflow ├── icon.png ├── images │ └── about │ │ ├── demo-1.png │ │ ├── demo-2.png │ │ ├── demo-3.png │ │ └── demo-4.png ├── info.plist └── ytsearch ├── ytsearch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── ytsearch.xcscheme └── ytsearch ├── ChannelSearch.swift ├── LiveBroadcastSearch.swift ├── PlaylistSearch.swift ├── Utils.swift ├── VideoSearch.swift └── main.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/README.md -------------------------------------------------------------------------------- /workflow/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/workflow/icon.png -------------------------------------------------------------------------------- /workflow/images/about/demo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/workflow/images/about/demo-1.png -------------------------------------------------------------------------------- /workflow/images/about/demo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/workflow/images/about/demo-2.png -------------------------------------------------------------------------------- /workflow/images/about/demo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/workflow/images/about/demo-3.png -------------------------------------------------------------------------------- /workflow/images/about/demo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/workflow/images/about/demo-4.png -------------------------------------------------------------------------------- /workflow/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/workflow/info.plist -------------------------------------------------------------------------------- /workflow/ytsearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/workflow/ytsearch -------------------------------------------------------------------------------- /ytsearch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ytsearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ytsearch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ytsearch.xcodeproj/xcshareddata/xcschemes/ytsearch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch.xcodeproj/xcshareddata/xcschemes/ytsearch.xcscheme -------------------------------------------------------------------------------- /ytsearch/ChannelSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch/ChannelSearch.swift -------------------------------------------------------------------------------- /ytsearch/LiveBroadcastSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch/LiveBroadcastSearch.swift -------------------------------------------------------------------------------- /ytsearch/PlaylistSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch/PlaylistSearch.swift -------------------------------------------------------------------------------- /ytsearch/Utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch/Utils.swift -------------------------------------------------------------------------------- /ytsearch/VideoSearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch/VideoSearch.swift -------------------------------------------------------------------------------- /ytsearch/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xilopaint/alfred-youtube/HEAD/ytsearch/main.swift --------------------------------------------------------------------------------