mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-07 21:10:55 +08:00
* Work on background service worker. * Work on shortcuts * Work on supporting service worker * Put new background behind version check * Fix build * Use new storage service * create commands from crypto service (#2995) * Work on service worker autofill * Got basic autofill working * Final touches * Work on tests * Revert some changes * Add modifications * Remove unused ciphers for now * Cleanup * Address PR feedback * Update lock file * Update noop service * Add chrome type * Handle "/" in branch names Updates web workflow to handle the `/` in branch names when it's a PR. * Remove any Co-authored-by: Jake Fink <jfink@bitwarden.com> Co-authored-by: Micaiah Martin <77340197+mimartin12@users.noreply.github.com>
6 lines
225 B
TypeScript
6 lines
225 B
TypeScript
import AbstractChromeStorageService from "./abstractChromeStorageApi.service";
|
|
|
|
export default class BrowserMemoryStorageService extends AbstractChromeStorageService {
|
|
protected chromeStorageApi = chrome.storage.session;
|
|
}
|