SmartCoder

SmartCoder

smartcode

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SmartCoder",
  "description": "smartcode",
  "permissions": [
    "activeTab",
    "storage",
    "sidePanel",
    "contextMenus"
  ],
  "host_permissions": [
    "https://*.smartcoder.ai/*",
    "http://frontend.smartcode.ai/*"
  ],
  "icons": {
    "16": "logo/[email protected]",
    "32": "logo/[email protected]",
    "48": "logo/[email protected]",
    "128": "logo/[email protected]"
  },
  "side_panel": {
    "default_path": "translate.html"
  },
  "action": {
    "default_title": "SmartCoder"
  },
  "commands": {
    "open_side_panel": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+Shift+S"
      },
      "description": "open side panel"
    }
  },
  "cookies": {
    "properties": [],
    "methods": [
      "get",
      "getAll",
      "getAllCookieStores",
      "remove",
      "set"
    ],
    "types": [
      "Cookie",
      "CookieDetails",
      "CookiePartitionKey",
      "CookieStore",
      "OnChangedCause",
      "SameSiteStatus"
    ],
    "events": [
      "onChanged"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "version": "1.5.0",
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "minimum_chrome_version": "88",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "https://*/",
        "http://*/*",
        "http://*/"
      ],
      "js": [
        "contentScript_0.js"
      ],
      "css": [
        "contentScript_0.css"
      ]
    }
  ]
}