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

35 lines
661 B
JSON
Raw Normal View History

2017-08-28 00:17:08 +00:00
{
"manifest_version": 2,
"name": "Make Medium Readable Again",
2018-01-06 01:22:59 +00:00
"description": "Neutralizes annoying parts of the Medium reading experience and lets you read again.",
2018-07-01 15:11:13 +00:00
"version": "1.5.1",
2017-08-28 00:17:08 +00:00
"applications": {
"gecko": {
2017-09-14 03:54:49 +00:00
"id": "{28d1ed97-5ff6-432b-a26d-61896fe2cbed}",
"strict_min_version": "42.0"
}
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
2017-08-28 22:37:28 +00:00
"icons": {
"128": "icon.png"
},
2017-08-28 00:17:08 +00:00
"permissions": [
2018-07-01 15:13:25 +00:00
"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
}
],
"web_accessible_resources": [
2018-07-01 15:13:25 +00:00
"medium.css"
2017-08-28 00:17:08 +00:00
]
}