Reputation: 308
Is there a way to write to/read from the registry in Windows using a Google Chrome extension?
I'm looking to do something analogous to the following firefox functionality: https://developer.mozilla.org/en-US/docs/Accessing_the_Windows_Registry_Using_XPCOM
Upvotes: 0
Views: 2141
Reputation: 1805
Registry access is not exposed to extensions by Chrome, at least not to content or background scripts.
You'll have to create a plugin to do that.
(Untested) Idea:
Anyway, unless I am wrong, you won't be allowed by the browser to write registry values.
Firebreath is a framework to write NPAPI plugins: http://www.firebreath.org/
God luck.
Upvotes: 1