AniwatchPlus/manifest.json
Serraniel ebfc134e3d
Added basic chrome extension source codes
Manifest file and some aniwatch utils
2020-04-25 22:20:26 +02:00

20 lines
498 B
JSON

{
"name": "Enhanced Aniwatch",
"version": "0.1.0.0",
"description": "Contains several enhancments for https://aniwatch.me",
"manifest_version": 2,
"author": "Serraniel",
"homepage_url": "https://github.com/Serraniel/EnhancedAniwatch",
"content_scripts": [
{
"matches": [
"*://aniwatch.me/*"
],
"js": [
"utils/colors.js",
"utils/aniwatchCore.js"
],
"run_at": "document_start"
}
]
}