Today I learned you can use AppleScript to resize windows to a specific size. Simpler than I imagined if you can figure out what the positional params map to.

tell application "Firefox Nightly"
	set bounds of front window to {110, 120, 1310, 1020}
end tell