Bulk Texter Pro
Send texts with a personal touch, at scale, using the phone number you already have.
什么是Bulk Texter Pro?
Bulk Texter Pro是由https://bulktexterpro.com开发的Chrome扩展程序,该扩展的主要功能是“Send texts with a personal touch, at scale, using the phone number you already have.”。
扩展截图
下载Bulk Texter Pro扩展crx文件
下载Bulk Texter Pro扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is the pro version of the popular (and free) Bulk Texter Lite. Bulk Texter Pro supports scheduling messages in advance, CSV upload, sending group texts, sending images, previewing generated messages, downloading or sending previously sent messages, and much more! Bulk Texter Pro also supports a variety of texting platforms. See the full breakdown of features here: https://www.bulktexterpro.com/docs/features
扩展基本信息
名称 | Bulk Texter Pro |
ID | kpjadjgajlgmkefnnihfedmcabapnndj |
官方URL | https://chromewebstore.google.com/detail/bulk-texter-pro/kpjadjgajlgmkefnnihfedmcabapnndj |
简介 | Send texts with a personal touch, at scale, using the phone number you already have. |
文件大小 | 828 KB |
安装次数 | 5,056 |
当前版本 | 2.7.1 |
更新时间 | 2024-02-28 |
上架时间 | 2022-11-21 |
评分 | 4.86/5 共7次评分 |
开发者 | https://bulktexterpro.com |
电子邮箱 | [email protected] |
付费类型 | in_app |
扩展官网 | https://www.bulktexterpro.com |
隐私政策页面URL | https://www.bulktexterpro.com/docs/terms/privacy-policy |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "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.7.1", "background": { "service_worker": "background.js" }, "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": [ { "resources": [ "contentScripts\/injectedModal.html" ], "matches": [ "https:\/\/dialpad.com\/*", "https:\/\/voice.google.com\/*", "https:\/\/messages.google.com\/*", "https:\/\/www.textnow.com\/*" ] }, { "resources": [ "contentScripts\/textNowUserScript.js" ], "matches": [ "https:\/\/www.textnow.com\/*" ] } ], "icons": { "48": "icon48.png", "128": "icon.png" }, "permissions": [ "alarms", "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/dialpad.com\/*", "https:\/\/messages.google.com\/*", "https:\/\/voice.google.com\/*", "https:\/\/www.textnow.com\/*", "https:\/\/billing.bulktexterpro.com\/*", "https:\/\/docs.google.com\/picker*" ] } |