ABT Score Extension

ABT Score Extension

An extension that analyzes highlighted text and provides an ABT score as developed by Dr Randy Olson

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ABT Score Extension",
  "version": "1.1.1",
  "description": "An extension that analyzes highlighted text and provides an ABT score as developed by Dr Randy Olson",
  "permissions": [
    "activeTab"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}