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

chrome-extesion-manifest-json-schema

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chrome-extesion-manifest-json-schema

JSON schemas for Chrome Extesions Manifest files

  • 0.1.0
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

chrome-extesion-manifest-json-schema workflow npm

Chrome extension manifest JSON schemas (V2 and V3)

JSON schemas for Chrome extension manifest files. For more information about JSON schemas, see json-schema.org.

What's included?

  • V3 - includes the current Chrome implementation with specific backward compatibility according to the Chrome team.
  • V2 - includes the legacy Manifest V2 Chrome implementation possibly expired or with an expiring date soon.

Source code on schemastore.

Usage

You can either point to V3 or V2 schemas or get it by the Node.js interface.

const {manifestV2Schema, manifestV3Schema} = require('chrome-extesion-manifest-json-schema')

console.log(manifestV3Schema)

Outputs:

{
  "title": "JSON schema for Google Chrome extension manifest files",
  "$schema": "http://json-schema.org/draft-07/schema#",

  "type": "object",
  "additionalProperties": true,
  "required": [ "manifest_version", "name", "version" ],

  "properties": {
    "manifest_version": {
      "type": "number",
      "description": "One integer specifying the version of the manifest file format your package requires.",
      "enum": [ 2, 3 ]
    },
    // ...other stuff
  }
}

License

Public domain

Keywords

FAQs

Package last updated on 13 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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