gPass/firefox_webextension/compat.js

59 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-04-17 20:39:53 +02:00
/*
Copyright (C) 2013-2020 Grégory Soutadé
2017-04-17 20:39:53 +02:00
This file is part of gPass.
2017-04-17 20:39:53 +02:00
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.
2017-04-17 20:39:53 +02:00
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.
2017-04-17 20:39:53 +02:00
You should have received a copy of the GNU General Public License
along with gPass. If not, see <http://www.gnu.org/licenses/>.
*/
function get_preference(key)
2017-04-17 20:39:53 +02:00
{
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;
}
2017-04-17 20:39:53 +02:00
return pref[key];
}
,
function (err) {
console.log("Error getting preference " + err);
}
);
}
function set_preference(key, value)
{
browser.storage.local.set({[key]:value});
}
function delete_preference(key)
{
browser.storage.local.remove(key);
}
function send_tab_message(tab_id, parameters, callback)
2017-04-17 20:39:53 +02:00
{
browser.tabs.sendMessage(tab_id, parameters).then(
function cb(response) {
callback(response);
}
);
2017-04-17 20:39:53 +02:00
}