SocialFinder

App to analyse and add Instagram Influencers to Socialkyte.

SocialFinder란 무엇입니까?

SocialFinder은(는) https://socialkyte.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "App to analyse and add Instagram Influencers to Socialkyte."입니다.

확장 프로그램 스크린샷

screenshot

SocialFinder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Through this web plug-in, users can view statistics of an Instagram influencer's social media presence, activity and engagement. 

Moreover, users who are registered on our website will be able to update their campaign's footprint through this plugin and keep their campaign report up to date. For this purpose, the user will be asked to log in on www.socialkyte.com and update the campaign from their campaign dashboard. 

The distribution of this version of the chrome plug-in is meant for any and all users for free. 

This is demonstrated by the video shown on https://youtu.be/NyvtkYtUsgI

Step-by-step procedure of how to use the plugin:
1. Open chrome browser
2. Navigate to www.instagram.com
3. Navigate to any profile of your choice. E.g., www.instagram.com/socialkyte
4. Launch chrome extension "SocialFinder"
5. Check all the updated details
6. To view past collaborations click on any profile tag or search

Some of the metrics that we calculate to enable transparent decision making include a comparative analysis of engagement, likes, comments and hashtags recent collaborations (if any @ tags are present) by reading a public Instagram profile.

Version 3.3 update:
- bug fixes
- new metric average reel views added                    

확장 프로그램 기본 정보

이름 SocialFinder SocialFinder
ID amphplekinfpgliliekhpamijfjjeihp
공식 URL https://chromewebstore.google.com/detail/socialfinder/amphplekinfpgliliekhpamijfjjeihp
설명 App to analyse and add Instagram Influencers to Socialkyte.
파일 크기 286 KB
설치 횟수 54
현재 버전 3.3
최근 업데이트 2023-01-24
출시 날짜 2022-03-28
평점 4.50/5 총 4 개의 평점
개발자 https://socialkyte.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.socialkyte.com
도움말 페이지 URL https://www.socialkyte.com/
개인정보 보호 정책 페이지 URL https://www.socialkyte.com/privacy_policy
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SocialFinder",
    "version": "3.3",
    "description": "App to analyse and add Instagram Influencers to Socialkyte.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/www.instagram.com\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com https:\/\/maps.gstatic.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*",
                "https:\/\/staging.socialkyte.com\/*",
                "https:\/\/socialkyte.com\/*",
                "",
                "http:\/\/localhost:8000\/*",
                "http:\/\/*\/campaigns\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "iconn.png",
        "default_popup": "popup.html",
        "default_title": "Social Finder"
    }
}