Skip to content

Instantly share code, notes, and snippets.

@FuYaoDe
Created June 22, 2016 15:53
Show Gist options
  • Save FuYaoDe/7ab53043cbcd3ab6d46cdc0d9d4455d1 to your computer and use it in GitHub Desktop.
Save FuYaoDe/7ab53043cbcd3ab6d46cdc0d9d4455d1 to your computer and use it in GitHub Desktop.
{
"version": "0.0.0",
"name": "react-chrome-extension-example",
"manifest_version": 2,
"description": "Example for react-chrome-extension-boilerplate",
"browser_action": {
"default_title": "React Chrome Extension Example",
"default_popup": "popup.html"
},
"icons": {
"16": "img/icon-16.png",
"48": "img/icon-48.png",
"128": "img/icon-128.png"
},
"chrome_url_overrides": {
"newtab": "popup.html"
},
"web_accessible_resources": [
"inject.html"
],
"background": {
"page": "background.html"
},
"permissions": ["contextMenus", "management", "tabs", "storage", "https://github.com/*", "webRequest", "https://*/"],
"content_security_policy": "default-src 'self'; script-src 'self' http://localhost:3000 https://localhost:3000 'unsafe-eval'; connect-src http://localhost:3000 https://localhost:3000 https://nodejswebservice-andykuo.rhcloud.com; style-src * 'unsafe-inline' 'self' blob:; img-src 'self' data:;"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment