FatBeagle

FatBeagle

Bark! Help me find more URLs. Woof!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FatBeagle",
  "description": "Bark! Help me find more URLs. Woof!",
  "version": "1.0.0",
  "icons": {
    "16": "resources/ico/16.png",
    "48": "resources/ico/48.png",
    "128": "resources/ico/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "resources/external/jquery.js",
        "resources/js/content/inject.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src",
  "browser_action": {
    "default_title": "Fat Beagle",
    "default_icon": "resources/ico/16.png",
    "default_popup": "resources/static/popup.html"
  },
  "options_page": "resources/static/options.html",
  "permissions": [
    "tabs",
    "http://*/",
    "https://*/",
    "webRequest",
    "webRequestBlocking",
    "alarms",
    "notifications",
    "unlimitedStorage",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "resources/external/jquery.js",
      "resources/external/psl.min.js",
      "resources/external/md5.js",
      "resources/js/core/const.js",
      "resources/js/core/utils.js",
      "resources/js/core/background.js"
    ],
    "persistent": true
  }
}