Dicta Nakdan - Share Vocalized Text

Dicta Nakdan - Share Vocalized Text

Share vocalized text on Twitter, Facebook, or anywhere else across the web. The plugin is a free product from Dicta, like the rest…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "0.1.4",
  "author": "Michael Tsaban",
  "default_locale": "en",
  "icons": {
    "250": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "src/options_page/index.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_name__",
    "default_popup": "src/browser_action/index.html"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ]
}