Actually Read it Later

Actually Read it Later

Extension for saving articles for later, and actually reading them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Actually Read it Later",
  "description": "Extension for saving articles for later, and actually reading them",
  "version": "1.7.5",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "permissions": [
    "alarms",
    "notifications",
    "storage",
    "tabs",
    "contextMenus",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "browser_action": {
    "default_title": "Actually Read It Later",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/notebook16.png",
    "32": "img/notebook32.png",
    "48": "img/notebook48.png",
    "128": "img/notebook128.png"
  }
}