Bulk Texter Pro

Bulk Texter Pro

Send texts with a personal touch, at scale, using the phone number you already have.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Bulk Texter Pro",
  "short_name": "Bulk Texter+",
  "description": "Send texts with a personal touch, at scale, using the phone number you already have.",
  "version": "2.8.3",
  "background": {
    "scripts": [
      "lib/store.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Bulk Texter Pro",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://dialpad.com/app*"
      ],
      "js": [
        "contentScripts/utilities.js",
        "lib/store.js",
        "contentScripts/sendQueueManager.js",
        "contentScripts/dialpad.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://voice.google.com/*"
      ],
      "js": [
        "contentScripts/utilities.js",
        "lib/store.js",
        "contentScripts/sendQueueManager.js",
        "contentScripts/googleVoiceManager.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://messages.google.com/*"
      ],
      "js": [
        "contentScripts/utilities.js",
        "lib/store.js",
        "contentScripts/sendQueueManager.js",
        "contentScripts/googleMessagesManager.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://www.textnow.com/messaging*"
      ],
      "js": [
        "contentScripts/utilities.js",
        "lib/store.js",
        "contentScripts/sendQueueManager.js",
        "contentScripts/textNowManager.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://billing.bulktexterpro.com/*"
      ],
      "js": [
        "contentScripts/utilities.js",
        "contentScripts/bulkTexterProBilling.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://docs.google.com/picker*"
      ],
      "js": [
        "contentScripts/utilities.js",
        "contentScripts/googleDocsFileUploadManager.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "contentScripts/injectedModal.html",
    "contentScripts/textNowUserScript.js"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon.png"
  },
  "permissions": [
    "alarms",
    "storage",
    "unlimitedStorage",
    "https://dialpad.com/*",
    "https://messages.google.com/*",
    "https://voice.google.com/*",
    "https://www.textnow.com/*",
    "https://billing.bulktexterpro.com/*",
    "https://docs.google.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{027f41ab-bff9-4619-ac9e-8a7defaed9a0}",
      "strict_min_version": "56.0"
    }
  }
}