0.0.21 • Published 5 years ago

@otchy/chrome-extension-utils v0.0.21

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

Chrome Extension Utils

Get started

$ npm init
(Enter whatever you want)
$ npm install --save-dev @otchy/chrome-extension-utils

This command installs cli tools init-chrome-extension, build-chrome-extension and dist-chrome-extension.

Initialize your extension directory

$ init-chrome-extension

This command will setup your directory for brand new chrome extension.

Build your extension

$ npm run build

This command is alias of build-chrome-extension. It will build your extension under build directory. So that you can load the directory as Chrome Extension from chrome://extensions page.

Distribute your extension

$ npm run dist

This command is alias of dist-chrome-extension. It will package your build directory and save it under dist directory as zip file. You can upload the zip file via Chrome Web Store developer dashboard as a public Chrome extension.

Modules

Background

Background utilities. It's highly recommended to call Background.init() in background.js to use powerful features this npm library provides.

// background.js
const {Background} = require('@otchy/chrome-extension-utils');
Background.init();

Message

Wrapper of messaging framework of Chrome extension.

// background.js
const {Background} = require('@otchy/chrome-extension-utils');

// Lisnters have to be in background.js
// That's why listenMessage is in Background module not Message module.
Background.listenMessage('GREETING', params => {
    const {greeting, name} = params;
    console.log(greeting); // "I'm options.js"
    return {greeting: `Hello, ${name}!`};
});

// You can unlisten it as well
// Background.unlistenMessage('GREETING');
// options.js -- you can do same thing in popup.js and page.js
const {Message} = require('@otchy/chrome-extension-utils');

(async () => {
    const name = 'options.js';
    const {greeting} = await Message.send('GREETING', {greeting: `I'm ${name}`, name});
    console.log(greeting); // "Hello, options.js!"
})();

SyncStorage

Wrapper of chrome.storage.sync. The storage is synced among multiple Chrome browsers when you login as same user. This is good for sharing common configuration of your extension.

const {SyncStorage} = require('@otchy/chrome-extension-utils');

(async () => {
    const count = await SyncStorage.get('counter', 1);
    // How many times you call this logic among all Chrome browsers with your extension
    console.log(count);
    SyncStorage.set('counter', count + 1);

    // You can remove it as well
    // SyncStorage.remove('counter');
})();

LocalStorage

Wrapper of chrome.storage.local. The storage is stored in your local machine, but it's not synced via network. This is permanent, so you can keep it even you close all Chrome sessions.

const {LocalStorage} = require('@otchy/chrome-extension-utils');

(async () => {
    const count = await LocalStorage.get('counter', 1);
    // How many times you call this logic on your local Chrome browser with your extension
    console.log(count);
    LocalStorage.set('counter', count + 1);

    // You can remove it as well
    // LocalStorage.remove('counter');
})();

SessionStorage

The storage is stored in your local memory (technically in background page). So it will be removed when you close all Chrome sessions. This is good for caching.

const {SessionStorage} = require('@otchy/chrome-extension-utils');

(async () => {
    const count = await SessionStorage.get('counter', 1);
    // How many times you call this logic after you open current Chrome session
    console.log(count);
    SessionStorage.set('counter', count + 1);

    // You can remove it as well
    // SessionStorage.remove('counter');
})();

Window

Wrapper of chrome.windows.*.

(async () => {
    // get current active window
    const win = await Windows.getCurrent();
})

Tabs

Wrapper of chrome.tabs.*. It also has some handy utilities.

(async () => {
    // get current active tab
    const tab = await Tabs.getCurrent();

    // open new tab
    const newTab = await Tabs.openNew('https://www.google.com');
    const newTabButInactive = await Tabs.openNew('https://www.google.com', false);

    // activate existing tab
    Tabs.activate(tab.id).then(tab => {
        // do something
    });

    // close existing tab
    Tabs.close(tab.id).then(() => {
        // do something
    });

    // close current tab
    Tabs.closeCurrent();

    // capture visible area of active tab as dataUrl of png
    const dataUrl = await Tabs.captureVisibleTab();

    // capture visible area of active tab as canvas
    const canvas = await Tabs.captureVisibleTabAsCanvas();

    // get information in the window object of certain tab
    const win = await Tabs.getWindowInfo(tab.id, 'location.href', 'scrollX', 'scrollY');
    console.log(win['location.href'], win.scrollX, win.scrollY);
    // NOTE: Tabs.getWindowInfo(tab.id, 'location') does work.
    // But all propertis in the location object will be read-only due to security reason.
    // Meaning, win.location.href = 'new url'; doesn't work.
})
0.0.21

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago