rubra - Bookmark Manager

rubra - Bookmark Manager

Social bookmarking app for saving, sharing, and discovering content on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.1.1.0",
  "version_name": "1.1.1",
  "default_locale": "en",
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "icons": {
    "16": "favicons/favicon-16.png",
    "32": "favicons/favicon-32.png",
    "64": "favicons/favicon-64.png",
    "96": "favicons/favicon-96.png",
    "192": "favicons/favicon-192.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "contextMenus",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_cta_open_rubra__",
    "default_icon": {
      "16": "favicons/favicon-16.png",
      "32": "favicons/favicon-32.png",
      "64": "favicons/favicon-64.png",
      "96": "favicons/favicon-96.png",
      "192": "favicons/favicon-192.png"
    }
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.rubra.com/*"
      ],
      "js": [
        "auth-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "favicons/*.png",
        "index.html"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}