Textmetrics

Textmetrics

The Smart AI Writing Software for Text Improvement

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Textmetrics",
  "version": "3.1.1",
  "description": "The Smart AI Writing Software for Text Improvement",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "identity"
  ],
  "optional_permissions": [
    "identity.email"
  ],
  "icons": {
    "16": "/assets/images/icon-16x16.png",
    "32": "/assets/images/icon-32x32.png",
    "48": "/assets/images/icon-48x48.png",
    "128": "/assets/images/icon-128x128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {},
  "oauth2": {
    "client_id": "1011719733627-ecrtn8bgtuqiel14k7vjvtfmdokfh4cg.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "tm-app/*",
        "css/*",
        "scripts/*",
        "index.html",
        "styles.css",
        "*.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}