sprinklr-ugc-approval

Ask approval from user to use their content

sprinklr-ugc-approval là gì?

sprinklr-ugc-approval là một tiện ích mở rộng Chrome được phát triển bởi extensions, và tính năng chính của nó là "Ask approval from user to use their content".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng sprinklr-ugc-approval

Tải xuống các tệp mở rộng sprinklr-ugc-approval 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

                        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.                    

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

Tên sprinklr-ugc-approval sprinklr-ugc-approval
ID ogfljniobfobhpagppgpfmeibnhciobe
URL Chính Thức https://chromewebstore.google.com/detail/sprinklr-ugc-approval/ogfljniobfobhpagppgpfmeibnhciobe
Mô tả Ask approval from user to use their content
Kích Thước Tệp 16.07 KB
Số Lần Cài Đặt 564
Phiên Bản Hiện Tại 0.1.11
Cập Nhật Lần Cuối 2023-10-06
Ngày Phát Hành 2020-04-03
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển extensions
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
        ]
    }
}