Roadmunk Chrome Extension

Roadmunk Chrome Extension

Submit feedback from anywhere

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Roadmunk Chrome Extension",
  "description": "Submit feedback from anywhere",
  "version": "0.0.9",
  "browser_action": {
    "default_title": "Submit feedback"
  },
  "content_scripts": [
    {
      "matches": [
        "https://login.roadmunk.com/extension_login_success"
      ],
      "js": [
        "magic.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "[email protected]",
    "48": "[email protected]",
    "128": "[email protected]"
  },
  "content_security_policy": "script-src 'self' 'sha256-O1sZMYLZSWW5zyfxAyGwU1o2q7oVYkTinBTwwWoRKK4='; object-src 'self'",
  "permissions": [
    "activeTab",
    "contextMenus",
    "cookies",
    "https://*.roadmunk.com/",
    "storage"
  ],
  "web_accessible_resources": [
    "config.json",
    "index.html"
  ]
}