FIFU Scraper

FIFU Scraper

Extract image addresses from a web page. You just filter by properties, select the images and its URLs are saved on clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FIFU Scraper",
  "version": "1.02",
  "description": "Extract image addresses from a web page. You just filter by properties, select the images and its URLs are saved on clipboard.",
  "icons": {
    "16": "img/icon-16x16.png",
    "32": "img/icon-32x32.png",
    "48": "img/icon-48x48.png",
    "64": "img/icon-64x64.png",
    "128": "img/icon-128x128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "name": "FIFU Scraper",
    "default_icon": {
      "16": "img/icon-16x16.png",
      "32": "img/icon-32x32.png",
      "48": "img/icon-48x48.png",
      "64": "img/icon-64x64.png",
      "128": "img/icon-128x128.png"
    },
    "default_popup": "html/popup.html"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/bootstrap.min.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      }
    },
    "featured_image_from_url": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      },
      "description": "Paste the URLs into Featured Image from URL (WordPress plugin) fields."
    }
  }
}