Share That Quote

Share That Quote

An extension to easily share quotes found in current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Share That Quote",
  "description": "An extension to easily share quotes found in current page",
  "version": "1.0.4",
  "author": "@martinratinaud",
  "background": {
    "scripts": [
      "event.js",
      "ga.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icons/favicon-16x16.png",
    "48": "icons/favicon-48x48.png",
    "128": "icons/favicon-128x128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}