AdComply

AdComply

This extension checks if Rx Pharma paid search text ads on Google.com are compliant with 2014 FDA Guidance for Industry.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AdComply",
  "version": "1.0",
  "description": "This extension checks if Rx Pharma paid search text ads on Google.com are compliant with 2014 FDA Guidance for Industry.",
  "permissions": [
    "storage",
    "tabs",
    "declarativeContent",
    "<all_urls>",
    "https://ajax.googleapis.com/",
    "http://*.google.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search?*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/adcomplyrx.png",
      "32": "images/adcomplyrx.png",
      "48": "images/adcomplyrx.png",
      "128": "images/adcomplyrx.png"
    }
  },
  "icons": {
    "16": "images/adcomplyrx.png",
    "32": "images/adcomplyrx.png",
    "48": "images/adcomplyrx.png",
    "128": "images/adcomplyrx.png"
  },
  "manifest_version": 2
}