Here is a list of all the Scheme-related name extensions I came across. After each extension, there is an assumption about its extension in quotation marks. If any information is incorrect or missing, please comment.
General Schema Extensions
.scm ("Schema") is the source code of the circuit written for R5RS, R6RS, R7RS or any other implementation and standard. This is the most common and usually preferred extension for Scheme source files.
.sps ("Scheme Program Source") - R6RS Scheme Program. As far as I can tell, it is not much different from .scm , but I think this extension means that the file contains the main program and, therefore, its name can be passed to the Scheme interpreter to start the program.
.sls ("Schema library source") is a form of R6RS (library...) which contains both interface declarations and library implementations. You will find them in Akku bags, for example.
.sld ("Definition of the library of schemes") - form R7RS (define-library...) . This form contains declarations only. It uses (include...) to include the actual source .scm library files. You will be in Snow packages, for example.
Extensions for Scheme-derived languages
.rkt ("Racket") - the source code of the racket. Racket supports R6RS Scheme, R7RS Scheme (via a third-party package), its own dialect (also called Racket), which has now expanded slightly from R6RS, and quite a few languages ββthat have little to do with Scheme. Each .rkt file starts with a line like #lang racket/base so that .rkt in what language.
.scr ("Scribe") is a text document written in Scheme Scribe , a markup language similar in spirit to TeX / LaTeX, but with Scheme as a macro language. Note. The original 1980 Scribe markup language did not use Scheme.
.scrbl ("Scribble") is a text document written in Scribble, a modern version of Scheme Scribe. Scribble interpreters were implemented at least for Racket and Chibi Scheme.
Rare Schema Extensions
.ss ("Schema Source") - A rare equivalent of .scm . Please prefer .scm .
.sc ("Schema") - A rare equivalent of .scm . Please prefer .scm .