Notify phrases in your speech

Notify phrases in your speech

Notify the speaker of their use of phrases to watch

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notify phrases in your speech",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false,
    "js": "options.js"
  },
  "description": "Notify the speaker of their use of phrases to watch",
  "version": "0.0.0.1",
  "icons": {
    "128": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "inject.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "options.js",
        "options.html",
        "icons/icon_config.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "manifest_version": 3
}