Skip to content

Instantly share code, notes, and snippets.

@alejandrocoding
Last active June 12, 2020 18:15
Show Gist options
  • Save alejandrocoding/4686369ddbbeefc5837f5373b00d1479 to your computer and use it in GitHub Desktop.
Save alejandrocoding/4686369ddbbeefc5837f5373b00d1479 to your computer and use it in GitHub Desktop.
Manifest for Chrome Extension adding background file in Angular app
{
"name": "My Extension",
"version": "1.0.0",
"description": "Description here",
"manifest_version": 2,
"permissions": ["webNavigation", "tabs"],
"page_action": {
"default_popup": "index.html"
},
"background": {
"scripts": ["background.js", "runtime.js"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment