Control Panel Version Check

Control Panel Version Check

Check what version of cPanel or Plesk a control panel is powered by.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Control Panel Version Check",
  "description": "__MSG_extension_description__",
  "version": "1.0.9",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "Control Panel Version Check"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "homepage_url": "http://www.whitefirdesign.com/control-panel-version-check?pk_campaign=CPVC-Chrome",
  "offline_enabled": true
}