[OUTDATED] Opal – Download the new version

[OUTDATED] Opal – Download the new version

Opal Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "[OUTDATED] Opal – Download the new version",
  "description": "Opal Chrome Extension",
  "manifest_version": 2,
  "version": "0.5.0",
  "icons": {
    "128": "images/no_session_128.png",
    "512": "images/no_session_512.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "images/no_session_128.png",
      "512": "images/no_session_512.png"
    },
    "default_title": "Opal extension",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "web_accessible_resources": [
    "blockedPage.html"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}