Transcription Helper

Transcription Helper

Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Transcription Helper",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Simple extension that helps to transcribe audio documents. It works purely local and does not send off any information.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "128": "icon_128.png"
  },
  "background": {
    "page": "background.html",
    "script": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "functions.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "*://*/*"
  ]
}