sprinklr-ugc-approval

Ask approval from user to use their content

What is sprinklr-ugc-approval?

sprinklr-ugc-approval is a Chrome extension developed by extensions, and its main feature is "Ask approval from user to use their content".

Extension Screenshots

screenshot

Download sprinklr-ugc-approval Extension CRX File

Download sprinklr-ugc-approval extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name sprinklr-ugc-approval sprinklr-ugc-approval
ID ogfljniobfobhpagppgpfmeibnhciobe
Official URL https://chromewebstore.google.com/detail/sprinklr-ugc-approval/ogfljniobfobhpagppgpfmeibnhciobe
Description Ask approval from user to use their content
File Size 16.07 KB
Installation Count 564
Current Version 0.1.11
Last Updated 2023-10-06
Publish Date 2020-04-03
Rating 3.00/5 Total 2 Ratings
Developer extensions
Email [email protected]
Payment Type free
Supported Languages 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\/*"
        ]
    }
}