fimfic2epub/extension/manifest.json

43 lines
881 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",
2018-03-13 19:12:53 +13:00
"version": "0.0",
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": [
{
2020-09-07 23:40:21 +12:00
"matches": ["https://www.fimfiction.net/*", "https://fimfiction.net/*"],
2021-05-25 11:42:43 +12:00
"js": ["build/vendors-node_modules_autosize_dist_autosize_js-node_modules_font-awesome_fonts_fontawesome-we-7f0b12.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": [
2018-03-15 06:04:50 +13:00
"fimfic2epub-logo.png"
],
2016-06-21 09:04:08 +12:00
"permissions": [
"https://fimfiction.net/*",
"https://*.fimfiction.net/*",
2020-10-19 23:43:48 +13:00
"https://www.googleapis.com/*",
"https://i.ytimg.com/*",
"https://twemoji.maxcdn.com/*",
2018-03-16 05:42:11 +13:00
"storage"
2016-06-21 09:04:08 +12:00
]
}