mirror of
https://github.com/whoeevee/EeveeSpotifyReborn.git
synced 2026-01-09 00:23:20 +01:00
20 lines
359 B
Swift
20 lines
359 B
Swift
import Foundation
|
|
|
|
extension URL {
|
|
var isLyrics: Bool {
|
|
self.path.contains("color-lyrics/v2")
|
|
}
|
|
|
|
var isOpenSpotifySafariExtension: Bool {
|
|
self.host == "eevee"
|
|
}
|
|
|
|
var isCustomize: Bool {
|
|
self.path.contains("v1/customize")
|
|
}
|
|
|
|
var isBootstrap: Bool {
|
|
self.path.contains("v1/bootstrap")
|
|
}
|
|
}
|