Transcriptor

Transcriptor

Helps to transcribe English words by double-clicking on the word while holding Alt + Ctrl (or Alt + Cmd key on Mac).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.5.0",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "background": {
    "persistent": false,
    "scripts": [
      "js/ga.js",
      "js/app.js"
    ]
  },
  "icons": {
    "128": "i/128.png"
  },
  "browser_action": {
    "default_icon": "i/128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/iframe.css"
      ],
      "js": [
        "js/utils.js",
        "js/transcriptor.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "css/transcriptor.css"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "update_url": "http://clients2.google.com/service/update2/crx"
}