Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
chrome-extesion-manifest-json-schema
Advanced tools
JSON schemas for Chrome Extesions Manifest files
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.
Source code on schemastore.
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)
{
"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
}
}
Public domain
FAQs
JSON schemas for Chrome Extesions Manifest files
The npm package chrome-extesion-manifest-json-schema receives a total of 0 weekly downloads. As such, chrome-extesion-manifest-json-schema popularity was classified as not popular.
We found that chrome-extesion-manifest-json-schema demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.