1
0
mirror of https://github.com/thebaer/MMRA synced 2024-11-13 10:11:01 +00:00
MMRA/manifest.json
2017-08-31 19:23:44 -04:00

28 lines
538 B
JSON

{
"manifest_version": 2,
"name": "Make Medium Readable Again",
"description": "Neutralizes annoying parts of the Medium reading experience so it's more enjoyable to read things.",
"version": "1.2",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"storage", "https://*/*"
],
"content_scripts": [
{
"matches": ["https://*/*"],
"js": ["content.js"]
}
]
}