IG Profile Viewer

the Chrome extension that makes viewing Instagram profile pictures easier and more convenient!
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": "IG Profile Viewer",
  "description": "the Chrome extension that makes viewing Instagram profile pictures easier and more convenient!",
  "version": "0.6.9.8",
  "action": {
    "default_title": "ig/tiktok full size profile picture"
  },
  "author": "Eclipse-Walker",
  "permissions": [
    "contextMenus",
    "declarativeNetRequest",
    "downloads",
    "tabs"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      },
      {
        "id": "ruleset_2",
        "enabled": true,
        "path": "rule.json"
      }
    ]
  },
  "host_permissions": [
    "https://*.instagram.com/*",
    "https://www.instagram.com/*",
    "*://www.tiktok.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "homepage_url": "https://github.com/Eclipse-Walker/ig-profile-viewer",
  "icons": {
    "16": "icons/instagram16.png",
    "19": "icons/instagram19.png",
    "32": "icons/instagram32.png",
    "48": "icons/instagram48.png",
    "128": "icons/instagram128.png"
  }
}