Social Sentiments
Adds sentiments indicator to facebook posts.
什么是Social Sentiments?
Social Sentiments是由https://asadmemon.com开发的Chrome扩展程序,该扩展的主要功能是“Adds sentiments indicator to facebook posts.”。
扩展截图
下载Social Sentiments扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
}
} | |