sprinklr-ugc-approval
Ask approval from user to use their content
Что такое sprinklr-ugc-approval?
sprinklr-ugc-approval - это расширение Chrome, разработанное extensions, и его основная функция - "Ask approval from user to use their content".
Снимки экрана расширения
Скачать файл CRX расширения sprinklr-ugc-approval
Скачайте файлы расширений sprinklr-ugc-approval в формате 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. Основная информация о расширении
| Название | |
| ID | ogfljniobfobhpagppgpfmeibnhciobe |
| Официальный URL | https://chromewebstore.google.com/detail/sprinklr-ugc-approval/ogfljniobfobhpagppgpfmeibnhciobe |
| Описание | Ask approval from user to use their content |
| Размер файла | 16.07 KB |
| Количество установок | 564 |
| Текущая Версия | 0.1.11 |
| Последнее Обновление | 2023-10-06 |
| Дата публикации | 2020-04-03 |
| Рейтинг | 3.00/5 Всего 2 оценок |
| Разработчик | extensions |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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\/*"
]
}
} | |