UpDog TikTok & Instagram Engagement Analytics

UpDog TikTok & Instagram Engagement Analytics

UpDog: TikTok & Instagram Engagement Analytics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "UpDog: TikTok & Instagram Engagement Analytics",
  "version": "1.4.0",
  "name": "UpDog TikTok & Instagram Engagement Analytics",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.instagram.com/*",
        "https://*.tiktok.com/*",
        "https://app.updog.marketing/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "global.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "instagram.js",
        "tiktok.js"
      ],
      "matches": [
        "https://*.instagram.com/*",
        "https://*.tiktok.com/*",
        "https://app.updog.marketing/*"
      ]
    }
  ],
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "notifications",
    "storage"
  ]
}