UHC Display

UHC Display

This extension converts UTC time text to the time format for your area (only on the /r/ultrahardcore subreddit).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UHC Display",
  "version": "1.1.0",
  "description": "This extension converts UTC time text to the time format for your area (only on the /r/ultrahardcore subreddit).",
  "icons": {
    "16": "img/app16.png",
    "48": "img/app48.png",
    "128": "img/app128.png"
  },
  "content_scripts": [
    {
      "js": [
        "fixdate.js"
      ],
      "matches": [
        "*://www.reddit.com/r/ultrahardcore/*",
        "http://paralleluhc.net/calendar/"
      ],
      "exclude_globs": [
        "*://www.reddit.com/r/ultrahardcore/submit*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "http://api.wolframalpha.com/*"
  ],
  "signature": "Alex Beals copyright 2014"
}