Nomotech Click2Call Beta

Nomotech Click2Call Beta

L’extension Google Chrome qui vous permet de lancer vos appels depuis internet en un clic.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nomotech Click2Call Beta",
  "version": "1.5",
  "description": "L’extension Google Chrome qui vous permet de lancer vos appels depuis internet en un clic.",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "src/js/jquery-3.3.1.min.js",
      "src/js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "src/html/config.html",
    "default_icon": {
      "16": "src/icons/icon20x20.png",
      "48": "src/icons/icon58x58.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/js/jquery-3.3.1.min.js",
        "src/js/contentScript.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "src/icons/icon20x20.png",
    "48": "src/icons/icon58x58.png"
  },
  "web_accessible_resources": [
    "src/icons/phone10x10.png",
    "src/icons/phone15x15.png"
  ],
  "manifest_version": 2
}