Edit chrome extension manifest file

I am new and trying to make an extension for chrome. I have a file manifest.jsonand I want to edit this file interactively. This means that the user is entering information, and my file manifest.jsonmust be changed accordingly. How can i do this?

+3
source share
1 answer

You can execute scripts on any page using Content Scripts . Just set the match value to *: http://code.google.com/chrome/extensions/content_scripts.html

0
source

All Articles