1
Fork 0
mirror of https://github.com/Steffo99/bbdl-firefox.git synced 2024-10-16 06:17:28 +00:00
bbdl-firefox/extension/manifest.json
2020-09-23 15:05:18 +02:00

44 lines
765 B
JSON

{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "bbdl@steffo.eu"
}
},
"name": "bbdl",
"version": "2020.9.23.1",
"developer": {
"name": "Stefano Pigozzi",
"url": "https://github.com/Steffo99/bbdl-firefox"
},
"description": "A WebExtension to download BBCollab videos.",
"permissions": ["downloads"],
"background": {
"scripts": ["background.js"]
},
"content_scripts": [
{
"matches": ["https://eu.bbcollab.com/*"],
"js": ["content.js"],
"css": []
}
],
"icons": {
"64": "icon64.png"
},
"page_action": {
"default_icon": {
"64": "icon64.png"
},
"default_title": "Download bbcollab video",
"show_matches": ["https://eu.bbcollab.com/*"]
}
}