Greg’s right, but just to expand:
Overrides don’t override processors, they just set initial variable values that override those of their parent recipes. (Overrides are actually just child recipes that are looked for in a special place).
You can take a look at what the Dropbox or TextWrangler recipes do with PkgCreator to point it to a scripts directory. Your override could in theory contain additional steps in the Process array, but these will only take place after all the steps happen in the parent recipe, which include finally building a package. So this is the part where you would need to fork and maintain your own recipe that uses a modified PkgCreator step that includes reference to a scripts directory.
This isn’t very much work to do once, except that when the Firefox recipe eventually changes upstream, you’ll need to manually merge in the changes rather than it being a simple “repo-update” command.
Your forked recipe would effectively be your override as well, you wouldn’t necessarily need to override your own recipe, which can contain all the customizations you want.
The other option is to consider finding a way to add your customizations to a separate package that doesn’t need to be installed alongside every new version of Firefox via Absolute Manage.
-Tim