fimfic2epub/extension/manifest.json

35 lines
575 B
JSON
Raw Normal View History

2016-06-21 09:04:08 +12:00
{
"manifest_version": 2,
"name": "fimfic2epub",
2016-06-24 02:25:18 +12:00
"short_name": "fimfic2epub",
2016-06-22 02:36:53 +12:00
"description": "Improved EPUB exporter for Fimfiction",
2016-08-22 22:08:20 +12:00
"version": "1.3.2",
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-08-23 02:28:30 +12:00
"js": ["fimfic2epub.js"],
"css": ["inject.css"]
2016-06-21 09:04:08 +12:00
}
],
2016-08-23 02:28:30 +12:00
"page_action": {
"default_icon": "fimfic2epub-logo.png"
},
2016-06-21 09:04:08 +12:00
"permissions": [
"http://*/*",
"https://*/*"
]
}