Examine source code of Adreva Network

Inspect and view changes in Adreva Network 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",
  "description": "Share your browsing data with the developer's organization, with your consent. THIS EXTENSION IS FOR BETA TESTING",
  "version": "1.5",
  "manifest_version": 3,
  "name": "Adreva Network",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtnjpA0euvO/1BWyT5+DZhw6T/MzujSFvEovZQ2ryo0hxnyXo8n4Cg/YKW5MHWNM7t5LPivGSLtW5Fk52EB0MVahWa1U4FDsbRUvj3b/UFpYeGJbBfyQxqTlXgRjXKpbllvY/hvrPNj6jgveyfS0fC+1q3G+IU2X7yPJRAMFzqVfoYaEa+cc9p+p6hepfHljUcBtQCyB2ZPuUrRCor8bivMo+lTkOdV0X7SbZjzvdsSiULe7Y+uxyuCzGEsbDgJ/g0Bbm/PAq+tIpEusmrTuawzEaV+9pMyBeoqesakMV7bbf5YMgRoYAd3RQUXkAU+V2aH186sx5xA1AjwsAa8YYcQIDAQAB",
  "icons": {
    "128": "new-icon-128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "alarms",
    "geolocation",
    "webNavigation",
    "identity",
    "history",
    "notifications",
    "scripting",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.reddit.com/*"
      ],
      "js": [
        "contentScriptReddit.bundle.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "matches": [
        "*://x.com/*"
      ],
      "js": [
        "contentScriptTwitter.bundle.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScriptClick.bundle.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "contentScriptYoutube.bundle.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://chatgpt.com/*"
      ],
      "js": [
        "contentScriptGPT.bundle.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "new-icon-128.png",
        "new-icon-34.png",
        "soccer1.jpg",
        "assets/img/soccer1.jpg"
      ],
      "matches": []
    }
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "new-icon-34.png"
  },
  "oauth2": {
    "client_id": "84536962734-693p605fjrfme4raqtjrm210lruo7g2g.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/user.gender.read",
      "https://www.googleapis.com/auth/user.birthday.read",
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}