AniwatchPlus/manifest.json

36 lines
1.1 KiB
JSON
Raw Normal View History

{
2020-07-29 10:35:57 +02:00
"name": "Enhanced Aniwatch",
2020-08-15 10:46:17 +02:00
"short_name": "Enhanced Ani",
2020-07-29 10:35:57 +02:00
"version": "0.1.0.0",
2020-08-15 10:33:08 +02:00
"description": "Enhanced Aniwatch is a slim extension which provides several UI improvments for https://aniwatch.me.",
2020-07-29 10:35:57 +02:00
"manifest_version": 2,
"author": "Serraniel",
2020-08-15 10:36:33 +02:00
"developer": {
"name": "Serraniel and Contributers",
"url": "https://github.com/Serraniel/EnhancedAniwatch/graphs/contributors"
},
2020-07-29 10:35:57 +02:00
"homepage_url": "https://github.com/Serraniel/EnhancedAniwatch",
"content_scripts": [{
"matches": [
"*://aniwatch.me/*"
],
"js": [
"utils/colors.js",
"utils/helpers.js",
"utils/aniwatchCore.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://aniwatch.me/*"
],
"js": [
2020-07-29 13:28:38 +02:00
"enhancements/quickSearch.js",
2020-08-04 12:35:14 +02:00
"enhancements/animeRequests.js",
"enhancements/lists.js"
2020-07-29 10:35:57 +02:00
],
"run_at": "document_end"
}
]
}