Social Sentiments

Adds sentiments indicator to facebook posts.

Social Sentimentsคืออะไร?

Social Sentiments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://asadmemon.com และคุณลักษณะหลักของมันคือ "Adds sentiments indicator to facebook posts."

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

screenshot
screenshot
screenshot

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

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

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

                        Social Sentiments tells you how much of the Facebook posts you consume are positive and negative. It adds a small indicator for this. You also get detailed analytics about your positive/negative consumption online.                    

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

ชื่อ Social Sentiments Social Sentiments
ID pljjkghcpbmleiggilgchhhomaihkdba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba
คำอธิบาย Adds sentiments indicator to facebook posts.
ขนาดไฟล์ 963 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2016-10-24
วันที่เผยแพร่ 2016-10-24
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://asadmemon.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Sentiments",
    "description": "Adds sentiments indicator to facebook posts.",
    "version": "0.1",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/cdn.heapanalytics.com; object-src 'self'",
    "icons": {
        "48": "assets\/hat48.png",
        "128": "assets\/hat128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "lib\/jquery-1.9.0.min.js",
                "content\/facebook_script.js"
            ],
            "css": [
                "content\/style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib\/sentiment_afinn.js",
            "lib\/sentiment.js",
            "background\/count_by_day.js",
            "background\/background_report.js",
            "background\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "name": "View my analytics"
    }
}