Noojee Click for Asterisk

Noojee Click for Asterisk

Turns phone numbers in any web page into click-to-dial links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Noojee Click for Asterisk",
  "version": "0.91.1",
  "author": "Noojee.com.au, adapted by Chris Terry",
  "description": "Turns phone numbers in any web page into click-to-dial links.",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/phone-48.png",
    "128": "img/phone-128.png"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/noojee/namespace.js",
      "js/noojee/lib.js",
      "js/noojee/dialstatus.js",
      "js/noojee/job.js",
      "js/noojee/util.js",
      "js/noojee/prefs.js",
      "js/noojee/sequence.js",
      "js/noojee/prompts.js",
      "js/noojee/asterisk.js",
      "js/noojee/noojeeclick.js",
      "js/noojee/event.js",
      "js/noojee/phonepatterns.js",
      "js/noojee/notification.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/noojee/namespace.js",
        "js/noojee/lib.js",
        "js/noojee/noojeeclick.js",
        "js/noojee/prefs.js",
        "js/noojee/util.js",
        "js/noojee/prompts.js",
        "js/noojee/render.js",
        "js/noojee/phonepatterns.js",
        "js/noojee/handlers.js",
        "js/init.js"
      ]
    }
  ],
  "permissions": [
    "*://*/*",
    "contextMenus",
    "notifications"
  ],
  "web_accessible_resources": [
    "img/call-phone.png"
  ]
}