ImageSourceDownloader

ImageSourceDownloader

Enlarge thumbnails, and show images/videos from links with a mouse hover.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "version": "1.0.1",
  "name": "ImageSourceDownloader",
  "description": "__MSG_APP_DESCRIPTION__",
  "homepage_url": "https://api.chiguatools.cn/ImageSourceDownloader",
  "author": "BK",
  "icons": {
    "128": "ImageSourceDownloaderIcon.png"
  },
  "permissions": [
    "*://*/*",
    "downloads",
    "history",
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "gzh.png",
    "pwx.png"
  ],
  "incognito": "split",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/includes/app.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/includes/content.min.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}