I'd like to use images that I've included within my packaged extension inside a content-script. In CSS if I reference these images with relative paths -
images/foo.png
then the path is relative to the document it is inserted in and not my extension. I think hardcoding these to my extension URL is a bad idea and would make testing very difficult. Does anyone have any ideas on how this can be made easier? Right now I am referencing images on my server, but this means I have duplicate images in my extension and the server and you can notice a small lag in load times as they are not local.
thanks,
Dan