Examine source code of GPlus - Remove Instagram Reels, Explore Page

Inspect and view changes in GPlus - Remove Instagram Reels, Explore Page 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
{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "2.0.1",
  "default_locale": "en",
  "icons": {
    "128": "/assets/icons/icon128.png"
  },
  "action": {
    "default_popup": "./content/popup.html",
    "default_icon": {
      "128": "/assets/icons/icon128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/img/logo.svg",
        "/assets/img/frog.gif",
        "/assets/img/sprite.png",
        "/assets/img/sprite_2.png",
        "/assets/graphs/classic_mode.css",
        "/assets/graphs/block_images.css",
        "/assets/graphs/block_videos.css",
        "/assets/graphs/square_shaped.css",
        "/assets/graphs/disable_vanity.css",
        "/assets/graphs/disable_explore.css",
        "/assets/graphs/disable_reels.css",
        "/assets/graphs/mp_disable_stories.css",
        "/assets/graphs/mp_disable_feed.css",
        "/assets/graphs/disable_comments.css",
        "/assets/graphs/ev_disable_stories.css",
        "/assets/graphs/counters_gray.css",
        "/assets/graphs/counters_disable.css",
        "/assets/graphs/grayscale.css",
        "/assets/graphs/fonts/noto_sans.css",
        "/assets/graphs/fonts/roboto.css",
        "/assets/graphs/fonts/poppins.css",
        "/assets/graphs/fonts/playfair.css",
        "/assets/graphs/fonts/merriweather.css",
        "/assets/graphs/fonts/noto_sans.css",
        "/assets/graphs/fonts/nunito.css",
        "/assets/graphs/fonts/montserrat.css",
        "/assets/graphs/fonts/pixelify.css",
        "/assets/graphs/fonts/gabarito.css",
        "/assets/graphs/fonts/roboto_condensed.css",
        "/assets/graphs/fonts/inter.css",
        "/assets/graphs/img/cup-border.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*",
        "https://instagram.com/*"
      ],
      "js": [
        "/assets/js/content.js"
      ],
      "css": [
        "/assets/graphs/main.css"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "/assets/js/background.js",
    "type": "module"
  },
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}