The Мухи

The Мухи

Мухи лазят буквально по всем сайтам, можно их ловить, очень полезное приложение.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "The Мухи",
  "short_name": "The Мухи",
  "description": "Мухи лазят буквально по всем сайтам, можно их ловить, очень полезное приложение.",
  "version": "1.21",
  "permissions": [
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "index.html"
  },
  "options_page": "index.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "jquery.js",
        "functions.js",
        "fly.js",
        "fly2.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'unsafe-eval';"
}