Ardary - SMS from Everywhere

Ardary - SMS from Everywhere

Send SMS to any phone number on a web page or web application !

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ardary - SMS from Everywhere",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Send SMS to any phone number on a web page or web application !",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://www.ardary-sms.com/*"
      ],
      "js": [
        "libphonenumber-js.min.js",
        "jquery.js",
        "content.js"
      ],
      "run_at": "document_end",
      "page": [
        "content.html"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "ARDARY",
    "popup": "popup.html",
    "default_icon": {
      "16": "LOGO.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "cookies",
    "webNavigation",
    "storage",
    "http://*/",
    "https://*/",
    "tabs",
    "<all_urls>",
    "*://*.google.com"
  ],
  "icons": {
    "16": "LOGO.png",
    "48": "LOGO.png",
    "128": "LOGO.png"
  },
  "web_accessible_resources": [
    "favicon.png",
    "sendSMS.png",
    "sendSMS1.png",
    "tn.png"
  ]
}