Comic grabber

Comic grabber

This extension watches loaded images and serves the downloading function of them. (specialized for some sites, default option)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Comic grabber 2",
  "version": "2.1.10",
  "default_locale": "ko",
  "description": "__MSG_extensionDescription__",
  "author": "Isitea",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "downloads",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_toggleMode__"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "app/loader.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "background": {
    "scripts": [
      "services/serviceProvider.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "70.0",
      "id": "{1eb3df71-5242-4118-8e26-8861c07c247e}"
    }
  }
}