Examine source code of Daily Monitor Prime

Inspect and view changes in Daily Monitor Prime source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Daily Monitor Prime",
  "version": "1.3",
  "description": "Makes Daily Monitor Prime Articles Accessible ",
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "*://*.monitor.co.ug/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.monitor.co.ug/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "./icons/icon48.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{78661c54-f5c3-4217-b5f2-7e9e1fa49bbb}"
    }
  }
}