sprinklr-ugc-approval-qa
Ask approval from user to use their content
sprinklr-ugc-approval-qaとは何ですか?
sprinklr-ugc-approval-qaはextensionsによって開発されたChromeの拡張機能で、その主な機能は「Ask approval from user to use their content」です。
拡張機能のスクリーンショット
sprinklr-ugc-approval-qa拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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\/*" ] } } |