RocketBird
Helper for Rocketbird
RocketBird là gì?
RocketBird là một tiện ích mở rộng Chrome được phát triển bởi https://rocketbird.io, và tính năng chính của nó là "Helper for Rocketbird".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RocketBird
Tải xuống các tệp mở rộng RocketBird dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RocketBird |
ID | kbllgbbchkhcjecmjcfnlbndkfogngdl |
URL Chính Thức | https://chromewebstore.google.com/detail/rocketbird/kbllgbbchkhcjecmjcfnlbndkfogngdl |
Mô tả | Helper for Rocketbird |
Kích Thước Tệp | 117 KB |
Số Lần Cài Đặt | 118 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-07-08 |
Ngày Phát Hành | 2023-07-07 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://rocketbird.io |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://help.rocketbird.io/en |
URL Trang Chính Sách Bảo Mật | http://www.rocketbird.io/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } |