SnowMAN

SnowMAN

The Coolest WAY to save your SLA

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SnowMAN",
  "version": "1.4",
  "offline_enabled": true,
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "description": "The Coolest WAY to save your SLA",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.service-now.com/*"
      ],
      "js": [
        "moment.js",
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "page_action": {
    "run_at": "document_end",
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "SnowMAN by Aman Srivastava"
  }
}