Foca Files Finder

Foca Files Finder

Scan the site and analyze the files with Foca!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Foca Files Finder",
  "version": "1.0",
  "background": {
    "scripts": [
      "popup/autoscan.js"
    ]
  },
  "description": "Scan the site and analyze the files with Foca!",
  "icons": {
    "48": "icons/foca.png"
  },
  "content_scripts": [
    {
      "js": [
        "popup/focafiles.js",
        "popup/jquery-1.12.4.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "options_ui": {
    "page": "popup/options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/foca.png"
    },
    "default_title": "Foca Files Finder",
    "default_popup": "popup/focafiles.html"
  }
}