Snap2Calendar Birthday Export

Snap2Calendar Birthday Export

Allows exporting of birthdays from Snapchat to your calendar (ICAL format)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "64": "icon64.e09346de.png",
    "512": "icon512.1bf45a08.png"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icon16.plasmo.6c567d50.png",
      "32": "icon32.plasmo.76b92899.png",
      "48": "icon48.plasmo.aced7582.png",
      "64": "icon64.plasmo.8bb5e6e0.png",
      "128": "icon128.plasmo.3c1ed2d2.png"
    },
    "default_popup": "popup.html"
  },
  "version": "0.0.5",
  "author": "James",
  "name": "Snap2Calendar Birthday Export",
  "description": "Allows exporting of birthdays from Snapchat to your calendar (ICAL format)",
  "background": {
    "service_worker": "static/background/index.js"
  },
  "permissions": [
    "storage",
    "scripting",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://web.snapchat.com/*"
      ],
      "js": [
        "main.7ee886d8.js"
      ],
      "run_at": "document_idle",
      "css": [
        "style.bdca071d.css"
      ]
    }
  ],
  "host_permissions": [
    "*://web.snapchat.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://web.snapchat.com/*"
    ]
  }
}