sprinklr-ugc-approval

Ask approval from user to use their content

sprinklr-ugc-approvalคืออะไร?

sprinklr-ugc-approval เป็นส่วนขยายของ Chrome ที่พัฒนาโดย extensions และคุณลักษณะหลักของมันคือ "Ask approval from user to use their content"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย sprinklr-ugc-approval

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

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

                        With this extension users will be able to comment on IG posts by natively logging in to Instagram via iframe , thus helping users and brands to request approval for IG fan posts by logging to their business accounts via extension.                    

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

ชื่อ sprinklr-ugc-approval sprinklr-ugc-approval
ID ogfljniobfobhpagppgpfmeibnhciobe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sprinklr-ugc-approval/ogfljniobfobhpagppgpfmeibnhciobe
คำอธิบาย Ask approval from user to use their content
ขนาดไฟล์ 16.07 KB
จำนวนการติดตั้ง 564
เวอร์ชันปัจจุบัน 0.1.11
อัปเดตครั้งล่าสุด 2023-10-06
วันที่เผยแพร่ 2020-04-03
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา extensions
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "sprinklr-ugc-approval",
    "description": "Ask approval from user to use their content",
    "version": "0.1.11",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/*.sprinklr.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/p\/*\/",
                "https:\/\/www.instagram.com\/tv\/*\/",
                "https:\/\/www.instagram.com\/reel\/*\/"
            ],
            "js": [
                "InstagramContentScript.js"
            ],
            "css": [
                "InstagramContentScript.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.sprinklr.com\/*"
            ],
            "js": [
                "SprinklrContentScript.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.sprinklr.com\/*"
        ]
    }
}