Save to Trove

Save to Trove

A privacy-focused bookmark manager to save webpages, texts, images, videos, pdfs & more.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Trove Bookmarks",
  "author": "Trove",
  "description": "A privacy-focused bookmark manager to save webpages, texts, images, videos, pdfs & more.",
  "version": "0.0.3",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "*.html"
  ]
}