Local Dental Deals

Local Dental Deals

Find great dental services deals in your location

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Local Dental Deals",
  "version": "3.0",
  "manifest_version": 2,
  "description": "Find great dental services deals in your location",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "permissions": [
      "http://localdentaldeals.com/*/"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://localdentaldeals.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "http://localdentaldeals.com/*/"
  ]
}