Magic Quote

Magic Quote

Share or bookmark quotes from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.0.6",
  "short_name": "Magic Quote",
  "name": "Magic Quote",
  "description": "Share or bookmark quotes from any website.",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ext/cs/entry.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "toolbar-index.html",
    "sidebar-index.html"
  ],
  "browser_action": {
    "default_icon": "images/icon48.png",
    "default_title": "Toggle Magic Quote Sidebar"
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs"
  ],
  "content_security_policy": "script-src 'self' https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js; object-src 'self'"
}