Tanke Insights

Tanke Instagram Insights - Engagement rates and other KPIs displayed right on every Instagram Profile

Tanke Insightsคืออะไร?

Tanke Insights เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.tanke.fr และคุณลักษณะหลักของมันคือ "Tanke Instagram Insights - Engagement rates and other KPIs displayed right on every Instagram Profile"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tanke Insights

ดาวน์โหลดไฟล์ส่วนขยาย Tanke Insights ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The Tanke Instagram Insights Plugin calculates different engagement KPIs and displays them on each Instagram Profile. 

- Average number of Likes
- Average number of Comments
- Average Posts per Week
- Average engagement Rate 
- Engagement on each Image
- Download button for Image

The Engagement rate is defined by: Likes + Comments divided by Number of Followers 
--> (Likes + Comments) / Followers

The data is based on the last 12 posts, excluding the most recent post in order to avoid that recent posted images or videos bias the numbers.

Additionally on Hashtag Pages the Tool will show you:

- Average number of Likes
- Average number of Comments
- Average Posts per Week

Which is useful in order to select the right hashtags for your posts.

The Plugin is only available to registered Tanke users. If you are not a registered user yet contact [email protected] providing you Instagram user name.

Please be aware that we do not guarantee that the Extensions will work in combination with other Extensions.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Tanke Insights Tanke Insights
ID bejidemagjhbekdamhdfcgdaaiagmbdl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tanke-insights/bejidemagjhbekdamhdfcgdaaiagmbdl
คำอธิบาย Tanke Instagram Insights - Engagement rates and other KPIs displayed right on every Instagram Profile
ขนาดไฟล์ 51.25 KB
จำนวนการติดตั้ง 915
เวอร์ชันปัจจุบัน 4.2
อัปเดตครั้งล่าสุด 2023-05-24
วันที่เผยแพร่ 2020-06-16
คะแนน 3.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://www.tanke.fr
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.tanke.fr
URL หน้านโยบายความเป็นส่วนตัว http://www.tanke.fr/politique-de-confidentialite
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tanke Insights",
    "description": "Tanke Instagram Insights - Engagement rates and other KPIs displayed right on every Instagram Profile",
    "version": "4.2",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "tanke-16.png",
            "32": "tanke-32.png",
            "64": "tanke-64.png",
            "128": "tanke-128.png"
        },
        "default_title": "Tanke Instagram Insights"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/script.google.com; object-src 'self';",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "declarativeContent",
        "downloads",
        "https:\/\/www.instagram.com\/*",
        "https:\/\/www.tanke.fr\/*",
        "https:\/\/i.instagram.com\/*"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "init-tanke.js"
            ],
            "run_at": "document_start",
            "matches": [
                "*:\/\/www.instagram.com\/*",
                "*:\/\/instagram.com\/*",
                "*:\/\/i.instagram.com\/*"
            ],
            "css": [
                "style.css"
            ]
        },
        {
            "js": [
                "instagram.js"
            ],
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.instagram.com\/*",
                "*:\/\/instagram.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "tanke_script.js"
    ],
    "icons": {
        "16": "tanke-16.png",
        "32": "tanke-32.png",
        "64": "tanke-64.png",
        "128": "tanke-128.png"
    }
}