AniwatchPlus/manifest.json

38 lines
1.1 KiB
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",
"options_ui": {
"page": "settings/settings.html",
"open_in_tab": true
},
"permissions": [
"storage"
],
"content_scripts": [{
"matches": [
"*://aniwatch.me/*"
],
"js": [
"settings/SettingsProvider.js",
"utils/colors.js",
"utils/helpers.js",
"utils/aniwatchCore.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://aniwatch.me/*"
],
"js": [
"enhancements/quickSearch.js",
"enhancements/animeRequests.js"
],
"run_at": "document_end"
}
]
}