AniwatchPlus/src/manifests/manifest.template.json
2020-10-28 19:59:30 +01:00

33 lines
No EOL
890 B
JSON

{
"name": "Aniwatch Plus",
"short_name": "AW+",
"version": "0.3.0.0",
"version_name": "0.3.0 Beta",
"description": "Aniwatch Plus is an unofficial extension which provides several UI improvments for https://aniwatch.me.",
"permissions": [
"*://aniwatch.me/*"
],
"manifest_version": 2,
"author": "Serraniel",
"developer": {
"name": "Serraniel",
"url": "https://github.com/Serraniel"
},
"homepage_url": "https://github.com/Serraniel/AniwatchPlus",
"icons": {
"48": "images/icon/icon_48.png",
"96": "images/icon/icon_96.png"
},
"content_scripts": [{
"matches": [
"*://aniwatch.me/*"
],
"js": [
"javascript/app.min.js"
],
"css": [
"stylesheets/aniwatchplus.min.css"
],
"run_at": "document_end"
}]
}