Hi there,
Recently installed this plugin and found that it didn't work in Firefox.
The path to the cached image was invalid.
Solution:
In your plugin directory go to 'ttftitles/ttftitles.php';
Search for '$generated_url' (somewhere around line 798);
and replace
'$generated_url = $options['cache_url'] . DIRECTORY_SEPARATOR . $filename . $extension;'
with
'$generated_url = $options['cache_url'] . '/' . $filename . $extension ;'
And that's it. Should work now :)