sprinklr-ugc-approval-qa

Ask approval from user to use their content

Что такое sprinklr-ugc-approval-qa?

sprinklr-ugc-approval-qa - это расширение Chrome, разработанное extensions, и его основная функция - "Ask approval from user to use their content".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения sprinklr-ugc-approval-qa

Скачайте файлы расширений sprinklr-ugc-approval-qa в формате 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-qa sprinklr-ugc-approval-qa
ID bdknjpkefbmllfmhailjmgbpmllldglp
Официальный URL https://chromewebstore.google.com/detail/sprinklr-ugc-approval-qa/bdknjpkefbmllfmhailjmgbpmllldglp
Описание Ask approval from user to use their content
Размер файла 16 KB
Количество установок 38
Текущая Версия 0.0.9
Последнее Обновление 2020-04-03
Дата публикации 2020-04-03
Разработчик extensions
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
        ]
    }
}