Social Sentiments

Adds sentiments indicator to facebook posts.

Social Sentiments란 무엇입니까?

Social Sentiments은(는) https://asadmemon.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds sentiments indicator to facebook posts."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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"
    }
}