Two Sentence Horror

Two Sentence Horror

Gets two sentence horrors from reddit

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Two Sentence Horror",
  "description": "Gets two sentence horrors from reddit",
  "version": "1.0.2",
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "twosentencehorror.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon.png",
    "256": "twosentencehorror.png"
  },
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'"
}