Read Later Box

Read Later Box

Read Later Box

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Read Later Box",
  "version": "2.8",
  "description": "Read Later Box",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_start",
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon19.png",
    "default_title": "Read Later Box",
    "default_popup": "popup.html"
  },
  "commands": {
    "myCommandREADLATER": {
      "suggested_key": {
        "default": "Alt+L"
      },
      "description": "Send add read command"
    }
  },
  "web_accessible_resources": [
    "menu.png",
    "stack.html",
    "popup.html",
    "iframe.html"
  ],
  "content_security_policy": "script-src 'self';img-src *; frame-src *; object-src 'self'",
  "permissions": [
    "chrome://favicon/*",
    "tabs",
    "bookmarks"
  ]
}