sprinklr-ugc-approval-qa
Ask approval from user to use their content
What is sprinklr-ugc-approval-qa?
sprinklr-ugc-approval-qa is a Chrome extension developed by extensions, and its main feature is "Ask approval from user to use their content".
Extension Screenshots
Download sprinklr-ugc-approval-qa Extension CRX File
Download sprinklr-ugc-approval-qa extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | sprinklr-ugc-approval-qa |
ID | bdknjpkefbmllfmhailjmgbpmllldglp |
Official URL | https://chromewebstore.google.com/detail/sprinklr-ugc-approval-qa/bdknjpkefbmllfmhailjmgbpmllldglp |
Description | Ask approval from user to use their content |
File Size | 16 KB |
Installation Count | 38 |
Current Version | 0.0.9 |
Last Updated | 2020-04-03 |
Publish Date | 2020-04-03 |
Developer | extensions |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } } |