Inspect and view changes in Anime List Popup 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": "Anime List Popup",
"description": "Shows your anime list from MyAnimeList in the browser's toolbar.",
"version": "1.4.3",
"author": "Vlad Poletaev",
"homepage_url": "https://github.com/poletaevvlad/anime-list-popup",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets/action-icon-16.png",
"32": "assets/action-icon-32.png",
"64": "assets/action-icon-64.png",
"128": "assets/action-icon-128.png"
},
"default_title": "Anime List",
"theme_icons": [
{
"dark": "assets/action-icon-dark.svg",
"light": "assets/action-icon.svg",
"size": 16
},
{
"dark": "assets/action-icon-dark.svg",
"light": "assets/action-icon.svg",
"size": 32
}
]
},
"icons": {
"16": "./assets/icon-16.png",
"32": "./assets/icon-32.png",
"48": "./assets/icon-48.png",
"64": "./assets/icon-64.png",
"128": "./assets/icon-128.png"
},
"content_security_policy": "script-src 'self'; default-src https://myanimelist.net https://api.myanimelist.net; img-src https://*.myanimelist.net; object-src 'none'",
"permissions": [
"storage",
"identity",
"https://myanimelist.net/v1/*",
"https://api.myanimelist.net/v2/*"
],
"browser_specific_settings": {
"gecko": {
"id": "animelist@poletaevvlad.github.io"
}
}
}