Lazy Felix - Visual Bookmarking

Lazy Felix - Visual Bookmarking

Lazy Felix

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.4.8",
  "manifest_version": 3,
  "name": "Lazy Felix - Visual Bookmarking",
  "homepage_url": "https://lazyfelix.com/",
  "description": "Lazy Felix",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.svg",
        "assets/*.jpg",
        "assets/*.png"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.min.js",
        "js/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src https://api.lazyfelix.com"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "16": "icons/19.png",
      "48": "icons/38.png"
    }
  }
}