Social Sentiments
Adds sentiments indicator to facebook posts.
O que é Social Sentiments?
Social Sentiments é uma extensão do Chrome desenvolvida por https://asadmemon.com, e sua principal característica é "Adds sentiments indicator to facebook posts.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Social Sentiments
Baixe arquivos de extensão Social Sentiments no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Social Sentiments |
ID | pljjkghcpbmleiggilgchhhomaihkdba |
URL Oficial | https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba |
Descrição | Adds sentiments indicator to facebook posts. |
Tamanho do Arquivo | 963 KB |
Contagem de Instalações | 45 |
Versão Atual | 0.1 |
Última Atualização | 2016-10-24 |
Data de Publicação | 2016-10-24 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://asadmemon.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |