fimfic2epub/extension/manifest.json

29 lines
480 B
JSON
Raw Normal View History

2016-06-21 09:04:08 +12:00
{
"manifest_version": 2,
"name": "fimfic2epub",
2016-06-22 02:36:53 +12:00
"short_name": "ff2epub",
"description": "Improved EPUB exporter for Fimfiction",
2016-06-22 01:19:36 +12:00
"version": "1.0.1",
2016-06-21 09:04:08 +12:00
2016-06-22 02:36:53 +12:00
"icons": {
"128": "icon-128.png"
},
2016-06-21 09:04:08 +12:00
"background": {
"scripts": ["eventPage.js"],
"persistent": false
},
"content_scripts": [
{
2016-06-21 18:39:26 +12:00
"matches": ["https://www.fimfiction.net/story/*", "http://www.fimfiction.net/story/*"],
2016-06-21 19:55:43 +12:00
"js": ["fimfic2epub.js"]
2016-06-21 09:04:08 +12:00
}
],
"permissions": [
"http://*/*",
"https://*/*"
]
}