SpeedDial

SpeedDial

View emergency numbers and support hotlines in the omnibox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SpeedDial",
  "description": "View emergency numbers and support hotlines in the omnibox.",
  "version": "0.0.1.0",
  "author": "Vivek Bhookya and Deepika Gudavalli",
  "browser_action": {
    "default_icon": "icons/speedDial_icon.png",
    "default_popup": "popup2.html",
    "default_title": "SpeedDial"
  },
  "icons": {
    "16": "icons/speedDial_icon_16.png",
    "48": "icons/speedDial_icon_48.png",
    "128": "icons/speedDial_icon_128.png"
  },
  "background": {
    "scripts": [
      "jquery.min.js",
      "backend_and_ph_numbers.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "backend_and_ph_numbers.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage"
  ]
}