Transum

Transum

A google chrome extension that can improve the usage for the website transum.org. It has features like better checking, constant…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Transum",
  "browser_action": {
    "default_title": "Transum",
    "default_popup": "browser.html"
  },
  "icons": {
    "16": "transum.png",
    "48": "transum.png",
    "128": "transum.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.transum.org/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "permissions": [
    "https://*.transum.org/*",
    "http://*.transum.org/*"
  ],
  "manifest_version": 2,
  "version": "1.0.0.2"
}