Watermelon BETA

Watermelon BETA

Review online terms and conditions in 1 click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Watermelon BETA",
  "short_name": "Watermelon BETA",
  "description": "Review online terms and conditions in 1 click",
  "version": "0.0.2",
  "author": "@amarfahmy",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistence": false
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "img/watermelon.png",
    "default_popup": "popup.html",
    "default_title": "Review online terms and conditions in 1 click"
  }
}