DomOptimizer/manifest.json

23 lines
374 B
JSON
Raw Permalink Normal View History

2018-03-03 23:30:07 +00:00
{
"manifest_version": 2,
"name": "DOM Optimizer",
"description": "Keeps your web pages thin by optimizing the DOM.",
"version": "1.0",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["optimize.js"]
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
}