1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-14 00:05:08 +12:00
This commit is contained in:
gorhill 2015-03-14 14:12:05 -04:00
parent c9b1298344
commit c80280bd2d

View file

@ -109,6 +109,20 @@ vAPI.closePopup = function() {
/******************************************************************************/
// A localStorage-like object which should be accessible from the
// background page or auxiliary pages.
// This storage is optional, but it is nice to have, for a more polished user
// experience.
vAPI.localStorage = {
key: function(){},
getItem: function(){},
setItem: function(){},
removeItem: function(){}
};
/******************************************************************************/
})();
/******************************************************************************/