Last active
June 12, 2020 18:15
-
-
Save alejandrocoding/4686369ddbbeefc5837f5373b00d1479 to your computer and use it in GitHub Desktop.
Manifest for Chrome Extension adding background file in Angular app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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