Read Later Bookmarks

Read Later Bookmarks

Read later view addon for chrome bookmarks

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Read Later Bookmarks",
  "description": "Read later view addon for chrome bookmarks",
  "version": "1.1.1",
  "manifest_version": 3,
  "icons": {
    "16": "icons8-bookmark-16.png",
    "48": "icons8-bookmark-48.png",
    "128": "icons8-bookmark-128.png"
  },
  "permissions": [
    "bookmarks",
    "tabs",
    "storage",
    "identity"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "Click to add page to read later bookmarks",
    "default_popup": "build/popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "build/options.html"
}