Mailbrew Read Later

Mailbrew Read Later

Save links from around the web to read later in your brews.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mailbrew Read Later",
  "version": "1.2",
  "description": "Save links from around the web to read later in your brews.",
  "permissions": [
    "activeTab",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {},
  "icons": {
    "16": "images/chrome-icon16.png",
    "32": "images/chrome-icon32.png",
    "48": "images/chrome-icon48.png",
    "128": "images/chrome-icon128.png"
  },
  "manifest_version": 2
}