Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webext-schema

Package Overview
Dependencies
Maintainers
1
Versions
190
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webext-schema - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

4

package.json

@@ -27,3 +27,3 @@ {

"json5": "^2.1.0",
"node-fetch": "^2.5.0"
"node-fetch": "^2.6.0"
},

@@ -38,3 +38,3 @@ "devDependencies": {

},
"version": "0.6.0"
"version": "0.6.1"
}

@@ -52,6 +52,6 @@ [![Build Status](https://travis-ci.org/asamuzaK/webext-schema.svg?branch=master)](https://travis-ci.org/asamuzaK/webext-schema)

* sinon-chrome
* [sinon-chrome](https://www.npmjs.com/package/sinon-chrome)
```
const schema = (new Schema()).arrange({name: "sinon-chrome"});
const schema = new Schema().arrange({name: "sinon-chrome"});
// [{namespace: "alarms", functions: [{...}], ...}];

@@ -69,3 +69,3 @@ ```

```
const schema = (new Schema()).get("browserAction");
const schema = new Schema().get("browserAction");
// [{namespace: "browserAction", events: [...], ...}]

@@ -75,3 +75,3 @@ ```

```
const schema = (new Schema()).get("browser_action.json");
const schema = new Schema().get("browser_action.json");
// [{namespace: "browserAction", events: [...], ...}]

@@ -88,3 +88,3 @@ ```

```
const schema = (new Schema()).getAll();
const schema = new Schema().getAll();
// {"alarms.json": [{...}], "bookmarks.json": [{...}], ...}

@@ -100,4 +100,4 @@ ```

```
const list = (new Schema()).list();
const list = new Schema().list();
// ["alarms.json", "bookmarks.json", ...]
```

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc