Booksaver: Highlight to Save Books

Booksaver: Highlight to Save Books

Save books and book threads for later. Booksaver is your librarian for the internet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Booksaver: Highlight to Save Books",
  "description": "Save books and book threads for later. Booksaver is your librarian for the internet",
  "version": "1.0.34",
  "manifest_version": 2,
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "contextMenus",
    "tabs",
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "icons": {
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "app/background.js"
    ]
  },
  "browser_action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/css/content.css",
    "/static/media/*"
  ],
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'"
}