Text Explorer

Text Explorer

Easy-to-use AI-powered tool for the optimized content reading experience by highlighting relevant information and keywords.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "author": "Silk Data AI",
  "short_name": "__MSG_extName__",
  "version": "1.2.0",
  "description": "__MSG_extShortDescr__",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "assets/*.png"
  ],
  "browser_action": {
    "default_title": "TextExplorer"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "select-text": {
      "suggested_key": {
        "default": "Alt+Q"
      },
      "description": "__MSG_selectTextTooltip__"
    }
  },
  "icons": {
    "16": "assets/text_explorer_icon_16.png",
    "48": "assets/text_explorer_icon_48.png",
    "128": "assets/text_explorer_icon_128.png"
  },
  "default_locale": "en"
}