admin管理员组文章数量:1345179
I wonder if it is possible to get values of certain preferences set in about:config using javascript?
Incentive is to get value of preferences set in firefox addon i've created when user lands on addon front end. Basically, I'm trying to identify users landing on FE without asking them to login explicitly.
I wonder if it is possible to get values of certain preferences set in about:config using javascript?
Incentive is to get value of preferences set in firefox addon i've created when user lands on addon front end. Basically, I'm trying to identify users landing on FE without asking them to login explicitly.
Share asked Sep 26, 2010 at 0:14 Bojan BabicBojan Babic 6035 silver badges19 bronze badges1 Answer
Reset to default 9Yes, you can.
First, you need to know that Mozilla uses the XPCOM interfaces for the preferences system.
Three used interfaces are nsIPrefService, nsIPrefBranch and nsIPrefBranch2.
The preferences service is instantiated in the same way you instantiate any XPCOM service.
Two examples to make it clear:
// Get the root branch
var prefs = Components.classes["@mozilla/preferences-service;1"]
.getService(Components.interfaces.nsIPrefBranch);
.
// Get the "extensions.myext." branch
var prefs = Components.classes["@mozilla/preferences-service;1"]
.getService(Components.interfaces.nsIPrefService);
prefs = prefs.getBranch("extensions.myext.");
And there are 3 types of preferences, they're string, integer and boolean. There are six methods in nsIPrefBranch that read and write preferences: getBoolPref(), setBoolPref(), getCharPref(), setCharPref(), getIntPref() and setIntPref().
More examples on that:
// Get the "accessibility." branch
var prefs = Components.classes["@mozilla/preferences-service;1"]
.getService(Components.interfaces.nsIPrefService).getBranch("accessibility.");
// prefs is an nsIPrefBranch.
// Look in the above section for examples of getting one.
var value = prefs.getBoolPref("typeaheadfind"); // get a pref (accessibility.typeaheadfind)
prefs.setBoolPref("typeaheadfind", !value); // set a pref (accessibility.typeaheadfind)
You can also use plex types. By using nsISupportsString, that is used to handle strings in preferences, so, use this when the preference value may contain non-ASCII characters.
Example:
// prefs is an nsIPrefBranch
// Example 1: getting Unicode value
var value = prefs.getComplexValue("preference.with.non.ascii.value",
Components.interfaces.nsISupportsString).data;
// Example 2: setting Unicode value
var str = Components.classes["@mozilla/supports-string;1"]
.createInstance(Components.interfaces.nsISupportsString);
str.data = "some non-ascii text";
prefs.setComplexValue("preference.with.non.ascii.value",
Components.interfaces.nsISupportsString, str);
I hope you solve your doubt with this.
本文标签: javascriptabout config preferences and jsStack Overflow
版权声明:本文标题:javascript - about config preferences and js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743774027a2536640.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论