Broadcast Carthike

Broadcast Carthike

An automation extension for sending messages Carthike - Shopify

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "An automation extension for sending messages Carthike - Shopify",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "https://web.whatsapp.com/*",
    "https://*.carthike.com/*",
    "storage",
    "notifications",
    "gcm"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*",
        "https://*.carthike.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__"
  },
  "version": "1.3.0",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}