sprinklr-ugc-approval
Ask approval from user to use their content
什么是sprinklr-ugc-approval?
sprinklr-ugc-approval是由extensions开发的Chrome扩展程序,该扩展的主要功能是“Ask approval from user to use their content”。
扩展截图
下载sprinklr-ugc-approval扩展crx文件
下载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\/*"
]
}
} | |