Comment Responder

Comment Responder Chrome Extension

Comment Responderคืออะไร?

Comment Responder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย automaticsextension และคุณลักษณะหลักของมันคือ "Comment Responder Chrome Extension"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Comment Responder

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

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

                        Comment responder is a chrome extension that will help you to reply to the comments on your facebook post. 

It will allow you to auto reply to comment based on different keywords also send a message to the people who commented on your post if you enable that option.                    

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

ชื่อ Comment Responder Comment Responder
ID okmnbiladbkgnjnnojljeleijkcdfgob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/comment-responder/okmnbiladbkgnjnnojljeleijkcdfgob
คำอธิบาย Comment Responder Chrome Extension
ขนาดไฟล์ 1.21 MB
จำนวนการติดตั้ง 160
เวอร์ชันปัจจุบัน 1.1.8
อัปเดตครั้งล่าสุด 2021-06-26
วันที่เผยแพร่ 2021-01-11
ผู้พัฒนา automaticsextension
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.offerlevels.com/comment-responder
URL หน้านโยบายความเป็นส่วนตัว https://automatics.one/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Comment Responder Chrome Extension",
    "version": "1.1.8",
    "name": "Comment Responder",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "128.png"
    },
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/m.facebook.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "",
        "activeTab"
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "128.png",
        "32.png",
        "script.js"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}