CodeSnippet/chromeextension/manifest.json

16 lines
287 B
JSON
Raw Permalink Normal View History

2015-11-19 00:24:10 +08:00
{
"manifest_version": 2,
"name": "demo",
"description": "This extension will analyze a page using GTmetrix",
"version": "1.0",
"browser_action": {
2015-11-19 22:40:00 +08:00
"default_icon": "dist/icon.png",
2015-11-19 00:24:10 +08:00
"default_popup": "popup.html"
},
"permissions": [
2015-11-20 00:01:19 +08:00
"activeTab",
"tabs"
2015-11-19 00:24:10 +08:00
]
}