Remote Procedure Call implementation for WebExtensions, to easily call functions across content scripts and background script.
Browse Source

v0.2.0

tags/v0.2.0
Gerben 1 year ago
parent
commit
f5043a4bd6
3 changed files with 13 additions and 3 deletions
  1. +10
    -0
      Changelog.md
  2. +2
    -2
      package-lock.json
  3. +1
    -1
      package.json

+ 10
- 0
Changelog.md View File

@@ -0,0 +1,10 @@
# Changelog for webextension-rpc

## 0.2.0 (2022-07-24)

- Convert to TypeScript.
- Use a Symbol to inject RPC information. (**Breaking** change if you used `injectExtraArg`)

## 0.1.0 (2019-10-16)

- Initial version.

+ 2
- 2
package-lock.json View File

@@ -1,12 +1,12 @@
{ {
"name": "webextension-rpc", "name": "webextension-rpc",
"version": "0.1.0",
"version": "0.2.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "webextension-rpc", "name": "webextension-rpc",
"version": "0.1.0",
"version": "0.2.0",
"license": "CC0-1.0", "license": "CC0-1.0",
"devDependencies": { "devDependencies": {
"@types/firefox-webext-browser": "^94.0.1", "@types/firefox-webext-browser": "^94.0.1",


+ 1
- 1
package.json View File

@@ -1,6 +1,6 @@
{ {
"name": "webextension-rpc", "name": "webextension-rpc",
"version": "0.1.0",
"version": "0.2.0",
"description": "Remote Procedure Call implementation for WebExtensions, to easily call functions across content scripts and background script.", "description": "Remote Procedure Call implementation for WebExtensions, to easily call functions across content scripts and background script.",
"main": "./lib/index.js", "main": "./lib/index.js",
"types": "./lib/index.d.ts", "types": "./lib/index.d.ts",


Loading…
Cancel
Save