67 lines
1.7 KiB
JavaScript
67 lines
1.7 KiB
JavaScript
/*
|
|
Copyright (C) 2013-2020 Grégory Soutadé
|
|
|
|
This file is part of gPass.
|
|
|
|
gPass is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
gPass is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with gPass. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
var default_preferences = {"pbkdf2_level": 1000,
|
|
"account_url": "https://gpass-demo.soutade.fr/demo",
|
|
"always_disabled":false,
|
|
"popup_clipboard":false
|
|
};
|
|
|
|
function get_preference(key)
|
|
{
|
|
return browser.storage.local.get(key)
|
|
.then(
|
|
function (pref) {
|
|
if (!pref.hasOwnProperty(key))
|
|
{
|
|
if (default_preferences.hasOwnProperty(key))
|
|
return default_preferences[key];
|
|
else
|
|
return null;
|
|
}
|
|
return pref[key];
|
|
}
|
|
,
|
|
function (err) {
|
|
console.log("Error getting preference " + err);
|
|
}
|
|
);
|
|
}
|
|
|
|
function set_preference(key, value, sendResponse)
|
|
{
|
|
browser.storage.local.set({[key]:value});
|
|
if (sendResponse)
|
|
sendResponse(true);
|
|
}
|
|
|
|
function delete_preference(key)
|
|
{
|
|
browser.storage.local.remove(key);
|
|
}
|
|
|
|
function send_tab_message(tab_id, parameters, callback)
|
|
{
|
|
browser.tabs.sendMessage(tab_id, parameters).then(
|
|
function cb(response) {
|
|
callback(response);
|
|
}
|
|
);
|
|
}
|