FakePngDetector

FakePngDetector

Fake Png Detector

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FakePngDetector",
  "version": "1.0",
  "description": "Fake Png Detector",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "http://*/",
    "https://*/",
    "unlimitedStorage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_title": "Fake Png Detector",
    "default_icon": "images/fakePngDetector38.png",
    "icons": {
      "16": "images/fakePngDetector16.png",
      "32": "images/fakePngDetector32.png",
      "48": "images/fakePngDetector48.png",
      "128": "images/fakePngDetector128.png"
    }
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "myStyles.css"
      ],
      "js": [
        "helpers/storage.js",
        "contentScript.js"
      ]
    }
  ]
}