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 |
| Eメール | [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"
}
} | |