ENV Alert - Warning message in production environment

ENV Alert - Warning message in production environment

Display a warning in the page when accessing a site that matches the specified domain.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "[email protected]",
  "name": "__MSG_manifest_title__",
  "description": "__MSG_manifest_description__",
  "version": "1.0.3",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "ENV Alert",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "programs/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "programs/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "programs/content.js"
  ],
  "permissions": [
    "storage"
  ],
  "is_debug": false,
  "default_locale": "ja"
}