Thnks Chrome extension

Thnks Chrome extension

Thnks Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Thnks Chrome extension",
  "description": "Thnks Chrome extension",
  "version": "1.0.212",
  "manifest_version": 3,
  "icons": {
    "16": "./icon16x16.png",
    "48": "./icon48x48.png"
  },
  "action": {
    "default_icon": {
      "16": "./icon16x16.png",
      "32": "./icon32x32.png",
      "128": "./icon128x128.png"
    },
    "default_title": "Thnks"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "cookies",
    "storage",
    "identity",
    "activeTab",
    "notifications",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "icon48x48.png",
        "icon32x32.png",
        "reset-icon.svg",
        "pageWorld.js",
        "images/[email protected]",
        "images/thnks_icon.svg",
        "images/thnks_logo.png",
        "recaptcha.js",
        "recaptcha_gstatic.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "oauth2": {
    "client_id": "188520525350-4jveh268kf38i6b92mlt2dbevbn59gu8.apps.googleusercontent.com",
    "scopes": [
      "profile email openid"
    ]
  }
}