Zuperly Web Clipper

Zuperly Web Clipper

Tiny extension to capture links, images and highlighted text to Zuperly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Zuperly Web Clipper",
  "version": "1.1.4",
  "description": "Tiny extension to capture links, images and highlighted text to Zuperly",
  "icons": {
    "16": "icon_v2_128x128.png",
    "32": "icon_v2_128x128.png",
    "48": "icon_v2_128x128.png",
    "128": "icon_v2_128x128.png"
  },
  "action": {
    "default_title": "Zuperly",
    "default_icon": "icon_v2_128x128.png"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "pinner.js"
      ],
      "css": [
        "pinner.css"
      ],
      "exclude_matches": [
        "https://*.youtube.com/*"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "drawer.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "nudge.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "common.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "quiz.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "https://app-space108.zuperly.com/*",
      "https://app-space110.zuperly.com/*",
      "https://app.zuperly.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.ttf",
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "alarms",
    "contextMenus",
    "cookies",
    "idle",
    "notifications",
    "scripting",
    "storage",
    "tabs",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "iframe_ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "background": {
    "service_worker": "background.js"
  }
}