├── .vscode └── settings.json ├── LICENSE ├── README.md ├── create-userscript ├── editScrobblesBatch.js ├── editScrobblesBatch.user.js └── screenshots ├── Apply_To_All.png ├── Complete.png └── Edit_scrobble.png /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.trimTrailingWhitespace": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/README.md -------------------------------------------------------------------------------- /create-userscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/create-userscript -------------------------------------------------------------------------------- /editScrobblesBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/editScrobblesBatch.js -------------------------------------------------------------------------------- /editScrobblesBatch.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/editScrobblesBatch.user.js -------------------------------------------------------------------------------- /screenshots/Apply_To_All.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/screenshots/Apply_To_All.png -------------------------------------------------------------------------------- /screenshots/Complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/screenshots/Complete.png -------------------------------------------------------------------------------- /screenshots/Edit_scrobble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postpostscript/lastfm-batch-edit/HEAD/screenshots/Edit_scrobble.png --------------------------------------------------------------------------------