sprinklr-ugc-approval

Ask approval from user to use their content

Cos'è sprinklr-ugc-approval?

sprinklr-ugc-approval è un'estensione di Chrome sviluppata da extensions, e la sua funzione principale è "Ask approval from user to use their content".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione sprinklr-ugc-approval

Scarica i file di estensione sprinklr-ugc-approval in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome sprinklr-ugc-approval sprinklr-ugc-approval
ID ogfljniobfobhpagppgpfmeibnhciobe
URL Ufficiale https://chromewebstore.google.com/detail/sprinklr-ugc-approval/ogfljniobfobhpagppgpfmeibnhciobe
Descrizione Ask approval from user to use their content
Dimensione del File 16.07 KB
Conteggio Installazioni 564
Versione Corrente 0.1.11
Ultimo Aggiornamento 2023-10-06
Data di Pubblicazione 2020-04-03
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore extensions
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
        ]
    }
}