HOTDOG?

HOTDOG?

This will tell you if the image displays a hot dog

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HOTDOG?",
  "description": "This will tell you if the image displays a hot dog",
  "version": "1.0",
  "icons": {
    "16": "icon1.png",
    "48": "icon1.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon1.png",
    "default_title": "HotDog"
  },
  "permissions": [
    "desktopCapture",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "https://ajax.googleapis.com/"
  ]
}