1
0
mirror of https://github.com/thebaer/MMRA synced 2024-11-13 10:11:01 +00:00
MMRA/manifest.json

28 lines
538 B
JSON
Raw Normal View History

2017-08-28 00:17:08 +00:00
{
"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.",
2017-08-28 22:49:46 +00:00
"version": "1.1",
2017-08-28 00:17:08 +00:00
"options_ui": {
"page": "options.html",
"chrome_style": true
},
2017-08-28 22:37:28 +00:00
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": "icon.png"
},
2017-08-28 00:17:08 +00:00
"permissions": [
"storage", "https://*/*"
2017-08-28 00:17:08 +00:00
],
"content_scripts": [
{
"matches": ["https://*/*"],
2017-08-30 07:27:54 +00:00
"js": ["content.js"]
2017-08-28 00:17:08 +00:00
}
]
}