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.",
|
|
|
|
"version": "1.0",
|
|
|
|
|
2017-08-28 22:48:24 +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": [
|
2017-08-28 22:48:24 +00:00
|
|
|
"storage", "https://*/*"
|
2017-08-28 00:17:08 +00:00
|
|
|
],
|
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": ["https://*/*"],
|
|
|
|
"js": ["background.js"]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|