RocketBird
Helper for Rocketbird
什么是RocketBird?
RocketBird是由https://rocketbird.io开发的Chrome扩展程序,该扩展的主要功能是“Helper for Rocketbird”。
扩展截图
下载RocketBird扩展crx文件
下载RocketBird扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Chrome extension for the Rocketbird platform. This Chrome extension helps you collect qualified leads from the Twitter platform in a few clicks, simplifying the lead generation process and helping you grow your business more efficiently. 扩展基本信息
| 名称 | |
| ID | kbllgbbchkhcjecmjcfnlbndkfogngdl |
| 官方URL | https://chromewebstore.google.com/detail/rocketbird/kbllgbbchkhcjecmjcfnlbndkfogngdl |
| 简介 | Helper for Rocketbird |
| 文件大小 | 117 KB |
| 安装次数 | 118 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2023-07-08 |
| 上架时间 | 2023-07-07 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | https://rocketbird.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://help.rocketbird.io/en |
| 隐私政策页面URL | http://www.rocketbird.io/privacy-policy |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "RocketBird",
"version": "1.0.0",
"description": "Helper for Rocketbird",
"manifest_version": 3,
"author": "RocketBird",
"content_scripts": [
{
"matches": [
"*:\/\/twitter.com\/*"
],
"run_at": "document_idle",
"js": [
"contentscript.js"
],
"content_security_policy": "script-src 'self' https:\/\/app.rocketbird.io; object-src 'self'"
}
],
"icons": {
"16": "favicon-16.png",
"32": "favicon-32.png",
"48": "favicon-48.png",
"128": "favicon-128.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"injected.js",
"index.html"
],
"matches": [
"*:\/\/twitter.com\/*"
]
}
],
"externally_connectable": {
"matches": [
"*:\/\/app.rocketbird.io\/*",
"*:\/\/rocketbird.io\/*",
"*:\/\/twitter.com\/*"
]
},
"action": []
} | |