Flow Intercepter

Download intercepter for Flow
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Flow Intercepter",
  "description": "Download intercepter for Flow",
  "version": "1.0",
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "flowcatcher.essmehdi@github.com"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "links.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "catcher.js"
    ]
  },
  "permissions": [
    "downloads",
    "nativeMessaging",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "cookies",
    "<all_urls>"
  ]
}