Skip to content

Instantly share code, notes, and snippets.

@tim-we
Created April 26, 2018 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tim-we/61ba3afef73d71c37a69c32bd6088cc4 to your computer and use it in GitHub Desktop.
Save tim-we/61ba3afef73d71c37a69c32bd6088cc4 to your computer and use it in GitHub Desktop.
a typescript interface for web extensions manifest.json
interface Manifest {
// mandatory
manifest_version: string,
name: string,
version: string,
// a few common & simple ones
author: string,
default_locale: string,
description: string,
permissions: string[],
short_name: string,
version_name: string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment