AP Warning

AP Warning

Warn the user if they're not logged in to AP.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AP Warning",
  "version": "1.5.0",
  "manifest_version": 2,
  "description": "Warn the user if they're not logged in to AP.",
  "background": {
    "page": "background.html"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.aparchive.com/*",
        "*://www.apimages.com/*"
      ],
      "css": [
        "basic.css"
      ],
      "js": [
        "jquery-1.11.3.min.js",
        "jquery.plainmodal.min.js",
        "contentscript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "plainmodal-close.png"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://*.google.com/; object-src 'self'"
}