fimfic2epub/extension/manifest.json

38 lines
615 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-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": {
2018-03-13 10:03:58 +13:00
"scripts": ["build/eventPage.js"],
2016-06-21 09:04:08 +12:00
"persistent": false
},
"content_scripts": [
{
"matches": ["https://www.fimfiction.net/*", "http://www.fimfiction.net/*"],
2018-03-13 10:03:58 +13:00
"js": ["build/fimfic2epub.js"],
2016-08-23 02:28:30 +12:00
"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"
},
"web_accessible_resources": [
"fimfic2epub-logo.png"
],
2016-06-21 09:04:08 +12:00
"permissions": [
"http://*/*",
"https://*/*"
]
}