AutoFresco

AutoFresco

Fresco Courses Automation Tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AutoFresco",
  "version": "0.2.0",
  "description": "Fresco Courses Automation Tool",
  "permissions": [
    "activeTab",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "page_action": {
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "author": "Bhaskar Verma",
  "web_accessible_resources": [
    "beep.mp3"
  ]
}