Social Sentiments

Adds sentiments indicator to facebook posts.

Social Sentiments là gì?

Social Sentiments là một tiện ích mở rộng Chrome được phát triển bởi https://asadmemon.com, và tính năng chính của nó là "Adds sentiments indicator to facebook posts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Social Sentiments

Tải xuống các tệp mở rộng Social Sentiments dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Social Sentiments Social Sentiments
ID pljjkghcpbmleiggilgchhhomaihkdba
URL Chính Thức https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba
Mô tả Adds sentiments indicator to facebook posts.
Kích Thước Tệp 963 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2016-10-24
Ngày Phát Hành 2016-10-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://asadmemon.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}