VIEW LATER - save links in a stack

VIEW LATER - save links in a stack

This extension saves pages to view for 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": "__MSG_appName__",
  "short_name": "VIEW LATER",
  "description": "__MSG_appDesc__",
  "version": "1.1.6",
  "default_locale": "en",
  "commands": {
    "view-page-later": {
      "suggested_key": {
        "default": "Ctrl+Shift+PageDown"
      },
      "description": "adds current page to VIEW LATER"
    },
    "open-latest-page": {
      "suggested_key": {
        "default": "Ctrl+Shift+PageUp"
      },
      "description": "opens the latest added page"
    }
  },
  "permissions": [
    "notifications",
    "contextMenus",
    "storage",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "background": {
    "scripts": [
      "/js/jquery-1.10.2.min.js",
      "/js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://apis.google.com https://ssl.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "icons": {
    "128": "icon.png"
  }
}