CiRF The Guardian

CiRF The Guardian

Comment is Really Free on Guardian articles

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CiRF The Guardian",
  "description": "Comment is Really Free on Guardian articles",
  "version": "1.1",
  "permissions": [
    "activeTab",
    "cookies",
    "http://www.theguardian.com/*",
    "https://www.theguardian.com/*",
    "https://profile.theguardian.com/*",
    "https://avatar.guim.co.uk/*",
    "http://localhost/*",
    "https://commentisreallyfree.com/*"
  ],
  "browser_action": {
    "default_icon": "img/cpscott.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "jquery-1.12.0.min.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "CiRF.css"
      ],
      "matches": [
        "http://www.theguardian.com/*",
        "https://www.theguardian.com/*",
        "https://profile.theguardian.com/*"
      ],
      "js": [
        "jquery-1.12.0.min.js",
        "CiRF.js",
        "CiRFUser.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "img/CiRFComment.png"
  ]
}