Polarity

Polarity

Think from the other perspective

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Polarity",
  "description": "Think from the other perspective",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png",
    "browser_action": {}
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.haaretz.co.il/*",
        "https://*.mako.co.il/*",
        "https://*.calcalist.co.il/*",
        "https://*.walla.co.il/*",
        "https://*.ynet.co.il/*"
      ],
      "js": [
        "backgroundPolar.js"
      ],
      "run_at": "document_idle",
      "persistance": false
    }
  ],
  "permissions": [
    "activeTab"
  ]
}