Hi,
I'm working on my own toolstrip and I need a way for the user to change things. So I need a settings panel. Is this possible?
Or should I create a Content Script instead of a toolstrip?
This is a discussion on settings for toolstrip within the Plugins Development section, part of the Chrome Plugins category: Hi, I'm working on my own toolstrip and I need a way for the user to change things. So I ...
Hi,
I'm working on my own toolstrip and I need a way for the user to change things. So I need a settings panel. Is this possible?
Or should I create a Content Script instead of a toolstrip?
Change what kinds of things? You could use a mole for settings and save them in extension cookies, or you could open a pop-up or a new tab with a settings HTML page. Personally I like moles, but they're hard to find and not very customizable right now.
Well you can make the panel / popup, but the problem is to save them. As nemrod mentions extension cookies is the way to go at the moment, until html5 local storage has been implemented. http://code.google.com/p/chromium/is...Owner%20Mstone it's sceduled for v4 .. V4 seems to have 'everything we needed', what I would call version 1![]()
I need to save a list of urls and some things need to be able to be customized. A popup window sounds good enough. But isn't html5 storage supported in the newest dev build? Otherwise it will be cookies![]()