reasonable

reasonable

For a site called reason, you'd think it would block trolls, help users navigate comment threads, and show inline media. (Drink.)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "reasonable",
  "version": "2.3.6",
  "manifest_version": 2,
  "description": "For a site called reason, you'd think it would block trolls, help users navigate comment threads, and show inline media. (Drink.)",
  "icons": {
    "16": "/img/icon_16.png",
    "32": "/img/icon_32.png",
    "48": "/img/icon_48.png",
    "128": "/img/icon_128.png"
  },
  "page_action": {
    "default_icon": "/img/icon_16.png",
    "default_title": "reasonable"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/preload.js"
      ],
      "matches": [
        "*://reason.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "css": [
        "/css/content.css"
      ],
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "*://reason.com/*"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://www.brymck.com/reasonable/"
  ]
}