An Experience

An Experience

An Experience is an alternate reality game about the Internet achieving sentience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "An Experience",
  "version": "0.0.91",
  "manifest_version": 2,
  "description": "An Experience is an alternate reality game about the Internet achieving sentience.",
  "homepage_url": "http://toddwords.com",
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_title": "An Experience - Click to toggle on/off. Turns back on at midnight."
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/jquery-1.11.1.min.js",
      "js/p5.min.js",
      "js/p5.sound.js",
      "src/bg/music.js",
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "contextMenus",
    "tts",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "assets/*",
    "js/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-1.11.1.min.js",
        "js/mousetrap.min.js",
        "js/markov.js",
        "js/tracery.js",
        "src/inject/inject.js"
      ],
      "css": [
        "css/main.css"
      ]
    },
    {
      "matches": [
        "*://*.textfiles.com/*"
      ],
      "js": [
        "src/inject/textfiles.js"
      ]
    }
  ]
}