Inspect and view changes in fanbox-downloader 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": "fanbox-downloader",
"description": "PIXIV FANBOXの作品ページから右クリック保存",
"version": "1.3.16",
"author": "tana3n",
"icons": {
"48": "icon_48.png",
"96": "icon_96.png",
"128": "icon_128.png"
},
"content_scripts": [
{
"matches": [
"https://*.fanbox.cc/*"
],
"js": [
"fanbox-downloader.js"
]
}
],
"background": {
"scripts": [
"event_page.js"
]
},
"permissions": [
"downloads",
"storage",
"tabs",
"contextMenus",
"*://*.fanbox.cc/*"
],
"web_accessible_resources": [
"icon.svg"
],
"options_ui": {
"page": "settings.html"
},
"homepage_url": "https://github.com/tana3n/fanbox-downloader/",
"browser_specific_settings": {
"gecko": {
"id": "{5a997cb7-c116-43bf-acf6-4c6a203ec5d2}"
}
}
}