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