Group Members Exporter

Export Facebook group member requests into a Google sheet

Group Members Exporter là gì?

Group Members Exporter là một tiện ích mở rộng Chrome được phát triển bởi https://harizibarak.com, và tính năng chính của nó là "Export Facebook group member requests into a Google sheet".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Group Members Exporter

Tải xuống các tệp mở rộng Group Members Exporter 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

                        Group Members Exporter
----------------------------------------
(Supports English/Hebrew FB versions only)

The only Pay-as-you-go extension. Pay as little as $1 per 100 members.
Limited time: First 300 members are completely FREE!

With Group Members Exporter, you can keep answers from all your FB group members to your own google sheet. Just a few steps :-)

Step 1. Install this amazing extension
Step 2. Open a blank google sheet and click the extension button to link it
Step 3: Go to your member requests page on your facebook group page
Step 4: Click the extension to activate it (only the first time) 
Step 5: Click Export, or Export All and watch the google sheet as it grows with all your members and their requests

If you still run into issues, here's a short explainer video:
https://www.youtube.com/watch?v=yzc80laG9GY

IMPORTANT:
1. We don’t Approve or Decline any member request on your behalf. That is for you to decide.
2. All data is kept on your google sheet. We respect your privacy and that of your members.
3. We currently support only English/Hebrew versions of Facebook, in the future we might support more :)
4. Have questions? Need more features? Drop me an email: [email protected]

------------------------------------------
LEGAL
------------------------------------------
'FB' / 'Facebook' are trademarks of Meta Platforms Inc., registered in the U.S. and other countries. This is an independent project developed by Barak Harizi and has no relationship with Facebook Inc. / Meta Platforms Inc.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Group Members Exporter Group Members Exporter
ID klfbepgaggdhmajpfdfmjjnahkhnecne
URL Chính Thức https://chromewebstore.google.com/detail/group-members-exporter/klfbepgaggdhmajpfdfmjjnahkhnecne
Mô tả Export Facebook group member requests into a Google sheet
Kích Thước Tệp 68.09 KB
Số Lần Cài Đặt 441
Phiên Bản Hiện Tại 1.4.10
Cập Nhật Lần Cuối 2024-02-13
Ngày Phát Hành 2022-04-05
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://harizibarak.com
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng http://www.harizibarak.com
URL Trang Trợ Giúp https://www.youtube.com/watch?v=yzc80laG9GY
URL Trang Chính Sách Bảo Mật https://www.harizibarak.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Group Members Exporter",
    "version": "1.4.10",
    "description": "Export Facebook group member requests into a Google sheet",
    "manifest_version": 3,
    "action": {
        "default_title": "Group Members Exporter"
    },
    "background": {
        "service_worker": "background.js"
    },
    "oauth2": {
        "client_id": "98476812047-kpkpr2a25095v54hc86rrchprurplsus.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/spreadsheets",
            "https:\/\/www.googleapis.com\/auth\/drive.metadata.readonly"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "identity",
        "activeTab",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.facebook.com\/*"
    ],
    "icons": {
        "16": "images\/icon.png",
        "32": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    }
}