-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use chrome.storage.sync instead of chrome.storage.local #7325
Comments
Fixed in #7346. |
@Rob--W When will the PDF Viewer be updated? I mean, when will the chrome extension in chrome web store be updated? |
@csbenjamin Probably this week, according to #7353 (comment). |
@csbenjamin I published an update two days ago (1.4.55). But after reading your ticket again, I see that the initial triage is incorrect. Lines 71 to 98 in bd47440
@yurydelendik @Snuffleupagus In Firefox, the database is stored in transient it is not that difficult to offer a preference to save the database in synchronized storage instead of localStorage (we just need to be careful and not store data when Private/incognito mode is enabled). If there are no objections I don't mind sending a PR. |
Please see the bugs referenced in the PR, i.e. https://bugzilla.mozilla.org/show_bug.cgi?id=986966 and https://bugzilla.mozilla.org/show_bug.cgi?id=865893, for the rationale. |
Those bugs are about switching away from prefs.js, and do not provide any reason to specifically prefer sessionStorage over localStorage. |
The |
Is there any chance to use chrome.storage.sync to store the history? Thus the database will be stored on the cloud and it will be synced over all computer that the user is logged in into chrome with a google account. Doing that, if I have some online pdf document, something like www.example.com/myOnlinePdf.pdf, I can open in my office computer, start reading it and later, when I get home, I can open that pdf url and I can continue reading where I had stopped when I was in the office.
The text was updated successfully, but these errors were encountered: