TimeCat Chrome

TimeCat Chrome

A Magical Web Recorder

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TimeCat Chrome",
  "manifest_version": 2,
  "description": "A Magical Web Recorder",
  "version": "1.2.0.8",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "timecat-chrome-background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage",
    "downloads",
    "*://*/*"
  ],
  "options_page": "options.html",
  "browser_action": {
    "name": "~~~~~",
    "default_icon": "record-icon-black.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "timecat-chrome-content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "timecat.global.prod.js",
    "timecat-chrome-page.js"
  ]
}