I am currently working on a small extension for Chrome. I need same websql database for the extension, but I get different databases based on where I create them.
If I create the database in the content page, I get the database created for a particular page where user is.
If I create database in the background page then I get extension's own database. But it is invisible to content pages.
I wish I could access the EXTENSION's database from content pages, without resorting to clunky message passing mechanism. Is there a way to do that?