sprinklr-ugc-approval-qa

Ask approval from user to use their content

Was ist sprinklr-ugc-approval-qa?

sprinklr-ugc-approval-qa ist eine Chrome-Erweiterung, die von extensions entwickelt wurde, und ihr Hauptmerkmal ist "Ask approval from user to use their content".

Erweiterungsscreenshots

screenshot
screenshot

sprinklr-ugc-approval-qa-Erweiterungs-CRX-Datei herunterladen

Laden Sie sprinklr-ugc-approval-qa-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name sprinklr-ugc-approval-qa sprinklr-ugc-approval-qa
ID bdknjpkefbmllfmhailjmgbpmllldglp
Offizielle URL https://chromewebstore.google.com/detail/sprinklr-ugc-approval-qa/bdknjpkefbmllfmhailjmgbpmllldglp
Beschreibung Ask approval from user to use their content
Dateigröße 16 KB
Installationsanzahl 38
Aktuelle Version 0.0.9
Letztes Update 2020-04-03
Veröffentlichungsdatum 2020-04-03
Entwickler extensions
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "sprinklr-ugc-approval-qa",
    "description": "Ask approval from user to use their content",
    "version": "0.0.9",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/*.sprinklr.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/p\/*\/"
            ],
            "js": [
                "InstagramContentScript.js"
            ],
            "css": [
                "InstagramContentScript.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.sprinklr.com\/*"
            ],
            "js": [
                "SprinklrContentScript.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.sprinklr.com\/*"
        ]
    }
}