├── LICENSE ├── README.md ├── current ├── README.md ├── krc │ ├── README.md │ └── parser │ │ └── krc.js ├── qrc │ ├── README.md │ ├── parser │ │ └── qrcjson.js │ └── searcher │ │ └── qqmusic_ex.js └── yrc │ ├── README.md │ ├── parser │ └── yrc.js │ └── searcher │ └── netease_ex.js └── legacy ├── README.md ├── krc_parser_plus.js └── qqmusic_plus.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/README.md -------------------------------------------------------------------------------- /current/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/README.md -------------------------------------------------------------------------------- /current/krc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/krc/README.md -------------------------------------------------------------------------------- /current/krc/parser/krc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/krc/parser/krc.js -------------------------------------------------------------------------------- /current/qrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/qrc/README.md -------------------------------------------------------------------------------- /current/qrc/parser/qrcjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/qrc/parser/qrcjson.js -------------------------------------------------------------------------------- /current/qrc/searcher/qqmusic_ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/qrc/searcher/qqmusic_ex.js -------------------------------------------------------------------------------- /current/yrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/yrc/README.md -------------------------------------------------------------------------------- /current/yrc/parser/yrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/yrc/parser/yrc.js -------------------------------------------------------------------------------- /current/yrc/searcher/netease_ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/current/yrc/searcher/netease_ex.js -------------------------------------------------------------------------------- /legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/legacy/README.md -------------------------------------------------------------------------------- /legacy/krc_parser_plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/legacy/krc_parser_plus.js -------------------------------------------------------------------------------- /legacy/qqmusic_plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robotxm/ESLyric-LyricsSource/HEAD/legacy/qqmusic_plus.js --------------------------------------------------------------------------------