BeoBear2

BeoBear2

This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BeoBear2",
  "short_name": "BeoBear2",
  "description": "This extension allows you to have a quick preview and download of the all images OR all xmm images inside a thread.",
  "version": "2.0.3",
  "permissions": [
    "downloads",
    "contextMenus",
    "<all_urls>",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_title": "Beo this thread!"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "css": [
        "mystyle.css"
      ],
      "js": [
        "jquery-1.10.2.min.js",
        "jquery-migrate-1.2.1.min.js",
        "objectdetect/objectdetect.js",
        "objectdetect/objectdetect.frontalface.js",
        "objectdetect/objectdetect.upperbody.js",
        "objectdetect/jquery.objectdetect.js",
        "myscripts.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "jquery-1.10.2.min.js",
    "jquery-1.10.2.min.map",
    "jquery-migrate-1.2.1.min.js",
    "objectdetect/objectdetect.js",
    "objectdetect/objectdetect.frontalface.js",
    "objectdetect/objectdetect.upperbody.js",
    "objectdetect/jquery.objectdetect.js",
    "mystyle.css",
    "myscripts.js",
    "404.png"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}