Examine source code of Virality: Social Media & Marketing Tools

Inspect and view changes in Virality: Social Media & Marketing Tools source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Virality: Social Media & Marketing Tools",
  "short_name": "Virality",
  "version": "1.3.6",
  "description": "The most powerful social media marketing tools available, in the most convenient format possible—on the platforms themselves.",
  "icons": {
    "16": "assets/images/virality-icon.png",
    "32": "assets/images/virality-icon.png",
    "48": "assets/images/virality-icon.png",
    "128": "assets/images/virality-icon.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "displays/dashboard.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.tiktok.com/*"
      ],
      "js": [
        "scripts/content.js",
        "scripts/modal.js",
        "scripts/toast.js",
        "scripts/tiktok/boost-comments.js",
        "scripts/tiktok/live-controls.js"
      ]
    },
    {
      "matches": [
        "*://*.instagram.com/*"
      ],
      "js": [
        "scripts/content.js",
        "scripts/modal.js",
        "scripts/toast.js",
        "scripts/instagram/add-followers.js",
        "scripts/instagram/add-post-controls.js",
        "scripts/instagram/add-story-controls.js"
      ]
    },
    {
      "matches": [
        "*://*.twitter.com/*",
        "*://*.x.com/*"
      ],
      "js": [
        "scripts/content.js",
        "scripts/modal.js",
        "scripts/toast.js",
        "scripts/x/add-followers.js"
      ]
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "scripts/content.js",
        "scripts/modal.js",
        "scripts/toast.js",
        "scripts/facebook/add-friends.js"
      ]
    },
    {
      "matches": [
        "*://*.reddit.com/*"
      ],
      "js": [
        "scripts/content.js",
        "scripts/modal.js",
        "scripts/toast.js",
        "scripts/reddit/boost-upvotes.js"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/handle-orders.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "displays/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://otmbaidzdtnrnnwydcoq.supabase.co/*",
    "https://*.justanotherpanel.com/*",
    "https://*.tiktok.com/*",
    "https://*.instagram.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' https://unpkg.com/;"
  }
}