A Google Chrome/Firefox Extension for sending online content to be played on XBMC. Supported websites include YouTube, Vimeo, CollegeHumor, DailyMotion, eBaumsWorld and SoundCloud.
After automatic upgrade all the setting of the Add-on were removed.
This is probably caused by the Window.localStorage API used to handle settings:
Although this API is similar to Window.localStorage it is recommended that you don't use Window.localStorage in the extension code to store extension-related data. Firefox will clear data stored by extensions using the localStorage API in various scenarios where users clear their browsing history and data for privacy reasons, while data saved using the storage.local API will be correctly persisted in these scenarios.
(from:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/storage)
MDN documentation advices to use storage.local instead of Window.localStorage.
storage.local is asynchronous, so this won't be just a simple fix renaming function calls.
After automatic upgrade all the setting of the Add-on were removed. This is probably caused by the
Window.localStorage
API used to handle settings:MDN documentation advices to use
storage.local
instead ofWindow.localStorage
.storage.local
is asynchronous, so this won't be just a simple fix renaming function calls.