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.
擴展基本資訊
名稱 | Social Sentiments |
ID | pljjkghcpbmleiggilgchhhomaihkdba |
官方網址 | 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" } } |