So It Goes

So It Goes

Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "So It Goes",
  "version": "1.3.5",
  "description": "Adds 'So it goes' where appropriate to remind you that death is just a bad condition at a particular moment in one's existence.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "file://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}