Extract Facebook Group Answers

Extracts answers from Facebook Group before users are approved to join.

Extract Facebook Group Answersคืออะไร?

Extract Facebook Group Answers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Extracts answers from Facebook Group before users are approved to join."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extract Facebook Group Answers

ดาวน์โหลดไฟล์ส่วนขยาย Extract Facebook Group Answers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you manually copying your asnwers from your Facebook Group member request? This extension copies everything into your clipboard so you can paste it to Google Sheets or Excel.

1. Go to Members Requests.
2. Load all data by scrolling to the very bottom of the page.
3. Use extension.
4. Paste into Google Sheets or Excel.

It only copies what is visible on the screen. You can play with Facebook filters to limit the selection.

The extension doesn't send data anywhere outside your local computer.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Extract Facebook Group Answers Extract Facebook Group Answers
ID dfcmfhebmcphgldfbejjflnojabpemoi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/extract-facebook-group-an/dfcmfhebmcphgldfbejjflnojabpemoi
คำอธิบาย Extracts answers from Facebook Group before users are approved to join.
ขนาดไฟล์ 53.68 KB
จำนวนการติดตั้ง 574
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2020-04-04
วันที่เผยแพร่ 2020-03-30
คะแนน 2.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jakubgarfield/extract-facebook-group-answers
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Extract Facebook Group Answers",
    "description": "Extracts answers from Facebook Group before users are approved to join.",
    "version": "0.0.3",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/facebook.com\/*",
        "https:\/\/*.facebook.com\/*"
    ],
    "browser_action": {
        "default_title": "Extract Facebook Group Answers",
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "hot-reload.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/*",
                "https:\/\/facebook.com\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js",
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}