Click To Call Yemot

Click To Call Yemot

הפיכת כל מספר טלפון בעמוד ללחיץ, ובלחיצה אחת לבצע חיבור שיחה בין הטלפון שלך למספר.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Click To Call Yemot",
  "version": "1.1",
  "description": "__MSG_description__",
  "action": {
    "default_icon": "images/logoYemot.png",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "he",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}