禁用特定域名列表的浏览器缓存

I am a web developer and I often feel need to disable browser cache for certain domain names which I am currently developing on as I don't want javascript to cache. Is there a web browser plugin which I can make use of or It is as trivial as changing certain HTTP headers in apache/php configuration.

I work on LAMP stack.

You could serve the javascript files trough a PHP script like: src="get_script.php?name=jquery.js" and send the proper headers in get_script.php.

Or you could disable the cache on your browser: http://en.wikipedia.org/wiki/Wikipedia:Bypass_your_cache

Or set the headers in your apache: http://www.askapache.com/htaccess/using-http-headers-with-htaccess.html