Read Later

Read Later

This extension save pages when you want to read later.

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",
  "short_name": "read later",
  "description": "This extension save pages when you want to read later.",
  "version": "0.3.8",
  "browser_action": {
    "default_icon": "./icons/icon_48.png",
    "default_popup": "popup.html",
    "default_title": "read later"
  },
  "background": {
    "scripts": [
      "./assets/vendor.js",
      "./assets/background.js"
    ]
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "notifications",
    "storage",
    "bookmarks"
  ],
  "icons": {
    "16": "./icons/icon_16.png",
    "48": "./icons/icon_48.png",
    "128": "./icons/icon_128.png"
  },
  "commands": {
    "ADD_POST": {
      "suggested_key": {
        "default": "Ctrl+Shift+M",
        "mac": "MacCtrl+Shift+M"
      },
      "description": "add a new read later post."
    }
  }
}