chrome-storegae-ts
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

ChromeStorageTS

Node.js CI npm version

A TypeScript utility for interacting with Chrome's local storage in a type-safe manner.

Table of Contents

Installation

npm install chrome-storage-ts --save

Usage

import { ChromeStorageTS } from 'chrome-storage-ts';

const initialStorage = {
  key1: 'value1',
  key2: 'value2',
};

const storageInstance = new ChromeStorageTS(initialStorage, 'local'); // 'local' is the default storage type

// Update a key in the storage
storageInstance.updateStorageKeyValue('key1', 'newValue');

// ... other operations

API

ChromeStorageTS

  • constructor(storage: ChromeStorageObject, storageType: StorageTypes = 'local') Initializes the storage instance with the provided storage object and specifies the type of

  • resetChromeStorage(): Promise Resets the Chrome storage to its initial state by setting all keys to undefined.

  • updateStorageKeyValue(setting: string, value: any): Promise Updates a specific key in the Chrome storage with the provided value.

  • getStorageKeyValue(key: string, cb: Function): Promise Retrieves the value associated with a specific key from the Chrome storage.

  • getStorageKeysValue(keys: Array, cb: Function): Promise Retrieves the values associated with multiple keys from the Chrome storage.

  • addListenerChromeStorageValue(key: string, cb: Function): Promise Adds a listener to detect changes to a specific key in the Chrome storage.

  • addListenerChromeStorageValues(keys: Array, cb: Function): Promise Adds a listener to detect changes to multiple keys in the Chrome storage.

Contributing

  • Fork the repository.
  • Create your feature branch (git checkout -b feature/YourFeature).
  • Commit your changes (git commit -am 'Add some feature').
  • Push to the branch (git push origin feature/YourFeature).
  • Open a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Package Sidebar

Install

npm i chrome-storegae-ts

Weekly Downloads

1

Version

1.0.3

License

MIT

Unpacked Size

15.5 kB

Total Files

7

Last publish

Collaborators

  • chaysen