{
	"name": "React Performance",
	"version": "1.0.2",
	"manifest_version": 2,
	"author": "Vahe Araqelyan",
	"description":
		"A browser developer tools extension, which will help you to inspect the performance of React Js components",
	"devtools_page": "./devtools/devtools.html",
	"permissions": ["tabs", "storage", "file://*/*"],
	"options_page": "./options/index.html",
	"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
	"icons": {
		"16": "./icons/react-perftool_16.png",
		"48": "./icons/react-perftool_48.png",
		"128": "./icons/react-perftool_128.png"
	},
	"browser_action": {
		"default_icon": {
			"16": "./icons/react-perftool_16.png",
			"48": "./icons/react-perftool_48.png",
			"128": "./icons/react-perftool_128.png"
		}
	},
	"content_scripts": [
		{
			"run_at": "document_start",
			"matches": ["http://localhost/*", "file://*/*"],
			"js": ["./content_script/content.js"]
		}
	],
	"background": {
		"scripts": ["background.js"]
	},
	"web_accessible_resources": ["content_script/inject.js"],
	"homepage_url": "https://github.com/vaheqelyan/react-perftool"
}
