Inspect and view changes in AniList Extras source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "AniList Extras",
"description": "Adds a few additional features to AniList.",
"version": "1.2.0",
"minimum_chrome_version": "60.0.3112",
"icons": {
"128": "icon128.png"
},
"permissions": [
"https://anilist.co/*",
"https://graphql.anilist.co/*",
"https://api.jikan.moe/*"
],
"content_scripts": [
{
"matches": [
"https://anilist.co/*",
"https://myanimelist.net/*"
],
"js": [
"polyfill.js",
"anilist-extras.user.js"
],
"run_at": "document_start"
}
]
}