Examine source code of Netus AI

Inspect and view changes in Netus AI 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
{
  "description": "NetusAI paraphrasing tool - for 10x faster content creation",
  "version": "1.0.0",
  "manifest_version": 2,
  "name": "Netus AI",
  "icons": {
    "16": "/static/img/icon16.png",
    "48": "/static/img/icon48.png",
    "128": "/static/img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "/static/img/icon16-2.png",
      "48": "/static/img/icon48-2.png",
      "128": "/static/img/icon128-2.png"
    },
    "default_popup": "popup.html",
    "default_title": "Netus AI"
  },
  "web_accessible_resources": [
    "/static/img/*",
    "/static/css/*",
    "loader.html"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "contextMenus",
    "<all_urls>",
    "https://app.netus.ai/*"
  ],
  "commands": {
    "run-detector": {
      "suggested_key": {
        "default": "Ctrl+Alt+D",
        "mac": "Command+D"
      },
      "description": "AI Detector"
    },
    "run-bypasser": {
      "suggested_key": {
        "default": "Ctrl+Alt+B",
        "mac": "Command+B"
      },
      "description": "AI Bypasser"
    },
    "run-paraphraser": {
      "suggested_key": {
        "default": "Ctrl+Alt+P",
        "mac": "Command+P"
      },
      "description": "AI Paraphraser"
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "minimum_chrome_version": "88",
  "background": {
    "scripts": [
      "static/js/background.js"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://app.netus.ai/login",
        "https://app.netus.ai/"
      ],
      "js": [
        "static/js/captureLogin.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScript.bundle.js",
        "static/js/all.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "info@netus.ai",
      "strict_min_version": "42.0"
    }
  }
}