Bookmark Stack

Bookmark Stack

This extension saves a list of links to read later. In comparison to similar extensions, this one is much more light weight.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Bookmark Stack",
  "author": "Tobias Bengfort",
  "homepage_url": "https://github.com/xi/xiMatrix",
  "description": "inspired by view later",
  "version": "1.1.2",
  "browser_action": {
    "default_title": "Bookmark Stack",
    "default_popup": "stack.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    }
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "shared.js",
      "bg.js"
    ],
    "persistent": true
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "contextMenus",
    "chrome://favicon/"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4184dc66-ea2a-490f-8f02-21731ee99742}"
    }
  }
}