Reading List

Reading List

A read-it-later browser extension for people with overly ambitious bookmarking habits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reading List",
  "version": "0.4",
  "description": "A read-it-later browser extension for people with overly ambitious bookmarking habits.",
  "author": "Emanuel Feld",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "web_accessible_resources": [
    "popup.html",
    "index.html",
    "js/index.js",
    "js/popup.js"
  ],
  "permissions": [
    "https://web.archive.org/*",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "browser_action": {
    "default_title": "Reading List",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    }
  }
}