Speak Ai - Import & Analyze Text

Speak Ai - Import & Analyze Text

With a single click, import text from any web page onto your Speak account to analyze insights and sentiment instantly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Speak Ai - Import & Analyze Text",
  "version": "1.0.004.01",
  "description": "With a single click, import text from any web page onto your Speak account to analyze insights and sentiment instantly.",
  "author": "Speak Ai Inc",
  "background": {
    "page": "./src/html/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./src/scripts/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Speak Ai - Import & Analyze Text",
    "default_icon": "./src/images/speak-favicon.png",
    "default_popup": "./src/html/popup.html"
  },
  "icons": {
    "64": "./src/images/speak-favicon.png"
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "storage",
    "contextMenus",
    "notifications",
    "https://app.speakai.co/*",
    "https://dev.speakai.co/*",
    "http://localhost:4200/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.speakai.co/*",
      "*://speakai.co//*",
      "http://localhost:4200/*"
    ]
  }
}