OpenReply

OpenReply

OpenReply is a browser extension that lets you review websites, meet new friends, and have your ideas heard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "OpenReply",
  "short_name": "OpenReply",
  "description": "OpenReply is a browser extension that lets you review websites, meet new friends, and have your ideas heard.",
  "version": "0.3.2",
  "author": "OpenReply",
  "background": {
    "page": "app/background.html",
    "persistent": true
  },
  "browser_action": {},
  "commands": {
    "toggle-open-reply": {
      "suggested_key": {
        "default": "Alt+O"
      },
      "description": "Toggle OpenReply."
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "/icons/SYMBOL-16.png",
    "48": "/icons/SYMBOL-48.png",
    "128": "/icons/SYMBOL-128.png"
  },
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "/css/content.css",
    "/static/media/*"
  ],
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' https://cdn.firebase.com https://apis.google.com https://*.gstatic.com/ https://*.firebaseio.com https://*.googleapis.com https://accounts.google.com https://fonts.gstatic.com https://open-reply.firebaseapp.com; object-src 'self'"
}